15 lines
178 B
Swift
15 lines
178 B
Swift
|
|
//
|
||
|
|
// ForgotPassDM.swift
|
||
|
|
// WOKA
|
||
|
|
//
|
||
|
|
// Created by Bilal on 10/05/2024.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
// MARK: - ForgotPassDM
|
||
|
|
|
||
|
|
struct ForgotPassDM: Codable {
|
||
|
|
let email: String?
|
||
|
|
}
|