Skip to content

Commit

Permalink
feat: MemeReactionRequestDTO 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
chansooo committed Oct 1, 2024
1 parent b0a707a commit a932693
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Projects/Core/PPACData/Sources/DTO/MemeReactionRequestDTO.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// 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
}
}

0 comments on commit a932693

Please sign in to comment.