First Commit
This commit is contained in:
14
ReportingServices/ReportingObjects/ReactorOutsByDay.cs
Normal file
14
ReportingServices/ReportingObjects/ReactorOutsByDay.cs
Normal file
@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user