This commit is contained in:
2020-06-18 21:31:44 +00:00
parent e192ca042b
commit 40b705b75a
7 changed files with 44 additions and 8 deletions

View File

@@ -11,6 +11,7 @@ namespace AyaNova.Models
public dtUser()
{
Tags = new List<string>();
LastLogin = DateTime.MinValue;
}
public long Id { get; set; }
public uint Concurrency { get; set; }
@@ -27,6 +28,8 @@ namespace AyaNova.Models
public string Wiki { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
public DateTime LastLogin { get; set; }
}//eoc
public class User : ICoreBizObjectModel
@@ -39,6 +42,8 @@ namespace AyaNova.Models
[Required, MaxLength(255)]
public string Name { get; set; }
public DateTime LastLogin { get; set; }
public string Login { get; set; }
public string Password { get; set; }