12345678910111213141516171819202122 |
- //
- // TSPTPStyleModel.swift
- // AIRingtone
- //
- // Created by 100Years on 2025/3/4.
- //
- import ObjectMapper
- class TSPTPStyleModel: TSBaseModel {
- var image:UIImage?//给上传图片用的
- var imageName:String = ""
- var imageText:String = ""
- var prompt:String = ""
- var isVip:Bool = false
- override func mapping(map: ObjectMapper.Map) {
- imageName <- map["imageName"]
- imageText <- map["imageText"]
- prompt <- map["prompt"]
- isVip <- map["isVip"]
- }
- }
|