mirror of https://github.com/ogoun/Zero.git
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.
14 lines
376 B
14 lines
376 B
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; }
|
|
}
|
|
}
|