mirror of
https://github.com/zhigang1992/swift-request.git
synced 2026-01-12 22:52:42 +08:00
14 lines
250 B
Swift
14 lines
250 B
Swift
struct Quote: Codable {
|
|
let id: String
|
|
let content: String
|
|
let author: String
|
|
let tags: [String]
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case id = "_id"
|
|
case content
|
|
case author
|
|
case tags
|
|
}
|
|
}
|