SeanutSwift/Sources/Models/UserAuthentication.swift

13 lines
257 B
Swift

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