15 lines
351 B
C#
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;
|
|
}
|
|
}
|
|
}
|