// UserAuthentication.swift import Foundation struct UserAuthentication: Codable { var password: String? var username: String? enum CodingKeys: String, CodingKey { case password = "Password" case username = "Username" } }