SaleStoreOut.cs 479 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Store
  6. {
  7. public class SaleStoreOut
  8. {
  9. public string Code { get; set; }
  10. public string Source { get; set; }
  11. public string SourceCode { get; set; }
  12. public DateTime Date { get; set; }
  13. public string WhCode { get; set; }
  14. public IList<SaleStoreOutDetail> Details { get; set; } = new List<SaleStoreOutDetail>();
  15. }
  16. }