mysimulation/server/FSO.Server.Database/DA/Users/User.cs
Tony Bark 22191ce648 Removed NioTSO client and server
- NioTSO client isn't needed because we're using RayLib
- Added FreeSO's API server to handle most backend operations
2024-05-01 02:55:43 -04:00

25 lines
719 B
C#
Executable file

namespace FSO.Server.Database.DA.Users
{
public class User
{
public uint user_id { get; set; }
public string username { get; set; }
public string email { get; set; }
public UserState user_state { get; set; }
public uint register_date { get; set; }
public bool is_admin { get; set; }
public bool is_moderator { get; set; }
public bool is_banned { get; set; }
public string register_ip { get; set; }
public string last_ip { get; set; }
public string client_id { get; set; }
public uint last_login { get; set; }
}
public enum UserState
{
valid,
email_confirm,
moderated
}
}