- My list Games on add remove fav, only calling Games api and reloading in background - My list Karaoke on add remove fav, only calling Karaoke api and reloading in background -Finalised clicks count for every module
20 lines
328 B
Swift
20 lines
328 B
Swift
//
|
|
// GuestDataDM.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 29/05/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct GuestDataDM: Codable {
|
|
var username: String?
|
|
var fullname: String?
|
|
var newGuest: Bool?
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case username, fullname
|
|
case newGuest = "new_guest"
|
|
}
|
|
}
|