This commit is contained in:
2021-02-16 00:29:06 +00:00
parent 31a66de8a5
commit 81b5f31e1f
3 changed files with 27 additions and 4 deletions

View File

@@ -23,13 +23,13 @@ namespace AyaNova.Models
public List<string> Tags { get; set; }
public string VendorMemo { get; set; }
public long DropShipToCustomerId { get; set; }
public long? DropShipToCustomerId { get; set; }
public string ReferenceNumber { get; set; }
public long VendorId { get; set; }
public DateTime? OrderedDate { get; set; }
public DateTime? ExpectedReceiveDate { get; set; }
public PurchaseOrderStatus Status { get; set; }
public long ProjectId { get; set; }
public long? ProjectId { get; set; }
public string Text1 { get; set; }
public string Text2 { get; set; }
public List<PurchaseOrderItem> Items { get; set; } = new List<PurchaseOrderItem>();