First Commit
This commit is contained in:
16
ReportingServices/Models/PlanningReport/WeeklyPartChanges.cs
Normal file
16
ReportingServices/Models/PlanningReport/WeeklyPartChanges.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace ReportingServices.Models.PlanningReport
|
||||
{
|
||||
public class WeeklyPartChanges
|
||||
{
|
||||
public string REACTOR { get; set; }
|
||||
public string PSN { get; set; }
|
||||
public int WO_COUNT { get; set; }
|
||||
|
||||
public WeeklyPartChanges(string reactor, string psn, int wo_count)
|
||||
{
|
||||
REACTOR = reactor;
|
||||
PSN = psn;
|
||||
WO_COUNT = wo_count;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user