13 lines
176 B
Swift
13 lines
176 B
Swift
//
|
|
// ForgotPasswordRequest.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/09.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct ForgotPasswordRequest: Encodable {
|
|
let email: String
|
|
}
|