Skip to content

Commit

Permalink
feat: MemeReactionResponseDTO 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
chansooo committed Oct 1, 2024
1 parent 3617478 commit ccbe62f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ public struct MemeReactionRequestDTO: Codable {
self.count = count
}
}

public struct MemeReactionResponseDTO: Codable {
public let count: Int

public init(count: Int) {
self.count = count
}
}

0 comments on commit ccbe62f

Please sign in to comment.