Files
FA/BroseCumulativeReport/Model/MainRow.cs
2025-04-06 17:15:45 +02:00

16 lines
619 B
C#

namespace BroseCumulativeReport.Model;
public class MainRow
{
public string CustomerName { get; set; }
public string CustomerOrderNumber { get; set; }
public string OrderNumber { get; set; }
public DateTime OrderDate { get; set; }
public string SalesChannelProductCode { get; set; }
public string ShipperProductCode { get; set; }
public string LastWzNumber { get; set; }
public int WzQuantity { get; set; }
public List<(DateTime SendDate, int Quantity)> SendDatesWithQuantity { get; set; } = new();
public IEnumerable<ChildRow> ChildRows { get; set; } = new List<ChildRow>();
}