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.
Zero/ZeroLevel.SqLite/Model/User.cs

14 lines
376 B

5 years ago
namespace ZeroLevel.SqLite
{
public class User
{
public long Id { get; set; }
public string UserName { get; set; }
public string DisplayName { get; set; }
public byte[] PasswordHash { get; set; }
public long Timestamp { get; set; }
public long Creator { get; set; }
public UserRole Role { get; set; }
}
}

Powered by TurnKey Linux.