mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
25 lines
719 B
C#
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
|
|
}
|
|
}
|