Skip to content

Commit

Permalink
✨ :: [#86] WriteBookRequestDTO 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
shwaaaa committed Jun 16, 2024
1 parent 4061f69 commit d517eab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import Foundation

public struct WriteBookRequestDTO: Encodable {
public let title: String
public let plot: String

public init(
title: String,
plot: String
) {
self.title = title
self.plot = plot
}
}

0 comments on commit d517eab

Please sign in to comment.