This commit is contained in:
DDIsFriend
2023-08-31 15:36:47 +08:00
parent 829db25e7a
commit a53ff1b89e
5 changed files with 14 additions and 19 deletions

View File

@@ -9,11 +9,11 @@ import Foundation
class ResponseModel<T:Decodable> : Decodable {
typealias data = T
var code : Int
var code : Int?
var msg : String?
var data : T?
var time : Int
var success : Bool
var time : Int?
var success : Bool?
}
class LoginDataModel : Decodable {