This commit is contained in:
Trey t
2023-06-25 10:59:20 -05:00
parent 01915752b6
commit 24ee992f93
14 changed files with 448 additions and 727 deletions

View File

@@ -11,12 +11,15 @@ struct RegisteredUser: Codable {
let id: Int
let firstName, lastName, image: String?
let nickName: String?
let token: String?
let email: String?
enum CodingKeys: String, CodingKey {
case id
case firstName = "first_name"
case lastName = "last_name"
case image
case image, token
case email = "email_address"
case nickName = "nick_name"
}
}