10 lines
263 B
C#

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