This commit is contained in:
2020-06-09 22:09:59 +00:00
parent 3dc9ffbd10
commit 9fed178542
4 changed files with 13 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ namespace rockfishCore.Models
public long SiteId { get; set; }
public string Name { get; set; }
public string VendorName { get; set; }
public string Email { get; set; }
public string Email { get; set; }
public string ProductCode { get; set; }
public string SalesOrderNumber { get; set; }
public long PurchaseDate { get; set; }
@@ -22,6 +22,9 @@ namespace rockfishCore.Models
//schema v2
public bool RenewNoticeSent { get; set; }
//raven
public int Quantity { get; set; }
[JsonIgnore]
public virtual Customer Customer { get; set; }
public virtual Site Site { get; set; }