- Added the Forgot password otp send api. - Done the error handling and navigation for the same. - Added api for password updated. - Added necessary Checks for the password. - Fixed the versioning issue of the centered flow layout. Also fixed the errors, for the complex calculations , splitted the calculations to avoid crash.
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?
|
|
}
|