| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // ChatModel.swift
- // AiKeyboard
- //
- // Created by Destiny on 2025/4/30.
- //
- import Foundation
- import ObjectMapper
- // MARK: Initializer and Properties
- struct ReplyModel: Mappable {
-
- var content: String?
- // MARK: JSON
- init?(map: Map) { }
- mutating func mapping(map: Map) {
- content <- map["content"]
- }
- }
- struct SpeakModel: Mappable {
-
- var list: [String]?
-
- // MARK: JSON
- init?(map: Map) { }
-
- mutating func mapping(map: Map) {
- list <- map["list"]
- }
- }
|