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; } } }