This commit is contained in:
2020-11-18 18:39:47 +00:00
parent 95f16c4f3f
commit fa1d09711a
4 changed files with 22 additions and 29 deletions

View File

@@ -25,7 +25,7 @@ namespace AyaNova.Models
public string Notes { get; set; }
public long? CustomerId { get; set; }
public long? HeadOfficeId { get; set; }
public long? SubVendorId { get; set; }
public long? VendorId { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
@@ -69,7 +69,7 @@ namespace AyaNova.Models
public string Notes { get; set; }
public long? CustomerId { get; set; }
public long? HeadOfficeId { get; set; }
public long? SubVendorId { get; set; }
public long? VendorId { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
@@ -80,6 +80,15 @@ namespace AyaNova.Models
[JsonIgnore]//hide from being returned (as null anyway) with User object in routes
public UserOptions UserOptions { get; set; }
[JsonIgnore]
public Customer Customer { get; set; }
[JsonIgnore]
public HeadOffice HeadOffice { get; set; }
[JsonIgnore]
public Vendor Vendor { get; set; }
[JsonIgnore]//hide from being returned (as null anyway) with User object in routes
public Widget Widget { get; set; }