fixed encoder issue for UserAuthentication struct

This commit is contained in:
a. fox 2024-02-29 21:01:14 -05:00
parent d9cbb90575
commit ecdb1bdc35
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ struct UserAuthentication: Codable {
var username: String?
enum CodingKeys: String, CodingKey {
case password = "Password"
case password = "Pw"
case username = "Username"
}
}