2022-11-30 13:15:01 -07:00

15 lines
351 B
C#

namespace ReportingServices.ReportingObjects
{
public class ReactorOutsByDay
{
public string StartDate { get; set; }
public int TotalWafers { get; set; }
public ReactorOutsByDay(string startDate, int totalWafers)
{
StartDate = startDate;
TotalWafers = totalWafers;
}
}
}