You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
369 B
23 lines
369 B
//
|
|
// User.swift
|
|
// AllIn
|
|
//
|
|
// Created by Emre on 11/10/2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class User {
|
|
|
|
public var username: String
|
|
public var email: String
|
|
public var nbCoins: Int
|
|
|
|
public init(username: String, email: String, nbCoins: Int)
|
|
{
|
|
self.username = username
|
|
self.email = email
|
|
self.nbCoins = nbCoins
|
|
}
|
|
}
|