2023-01-19 13:05:54 -07:00

8 lines
232 B
C#

namespace ReportingServices.Shared.Models.ProductionReport;
public class UnloadTempsByDay
{
public DateTime Date { get; set; }
public int ASMUnloadsBelow700 { get; set; }
public int HTRUnloadsBelow700 { get; set; }
}