- Completed forget username flow with hindi language - Completed app update functionality, need the api to be updated as the version will not be a double, its going to be string
14 lines
178 B
Swift
14 lines
178 B
Swift
//
|
|
// UserNameDM.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 20/08/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
// MARK: - UserNameDM
|
|
struct UserNameDM: Codable {
|
|
let username: String?
|
|
}
|