sodalive-ios/SodaLive/Sources/User/Login/LoginRequest.swift

14 lines
183 B
Swift

//
// LoginRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
struct LoginRequest: Encodable {
let email: String
let password: String
}