Files
Woka_Native_iOS/WOKA/OnBoarding Module/Model/GuestDataDM.swift

18 lines
268 B
Swift
Raw Normal View History

//
// GuestDataDM.swift
// WOKA
//
// Created by MacBook Pro on 29/05/24.
//
import Foundation
struct GuestDataDM: Codable {
var username: String?
var fullname: String?
enum CodingKeys: String, CodingKey {
case username, fullname
}
}