-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from mash-up-kr/feature/reaction-한번에-모아서-호출
Feature/reaction 한번에 모아서 호출
- Loading branch information
Showing
6 changed files
with
83 additions
and
24 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
Projects/Core/PPACData/Sources/DTO/MemeReactionRequestDTO.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// MemeReactionRequestDTO.swift | ||
// PPACData | ||
// | ||
// Created by kimchansoo on 10/1/24. | ||
// | ||
|
||
import Foundation | ||
|
||
public struct MemeReactionRequestDTO: Codable { | ||
public let count: Int | ||
|
||
public init(count: Int) { | ||
self.count = count | ||
} | ||
} | ||
|
||
public struct MemeReactionResponseDTO: Codable { | ||
public let count: Int | ||
|
||
public init(count: Int) { | ||
self.count = count | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters