freeso/TSOClient/FSO.Server.Database/DA/Users/User.cs
riperiperi b57ebbd141 Cleanup: Remove most unused usings and MPL per-file licenses
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
2023-11-25 03:45:29 +00:00

25 lines
719 B
C#

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
}
}