This commit is contained in:
2021-03-02 00:27:58 +00:00
parent 2a1713aadc
commit 7c1c946449
2 changed files with 32 additions and 5 deletions

View File

@@ -63,12 +63,20 @@ namespace AyaNova.Models
public AuthorizationRoles Roles { get; set; }
[Required]
public UserType UserType { get; set; }
[NotMapped]
public string UserTypeViz { get; set; }
[MaxLength(255)]
public string EmployeeNumber { get; set; }
public string Notes { get; set; }
public long? CustomerId { get; set; }
[NotMapped]
public string CustomerViz { get; set; }
public long? HeadOfficeId { get; set; }
[NotMapped]
public string HeadOfficeViz { get; set; }
public long? VendorId { get; set; }
[NotMapped]
public string VendorViz { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }