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

17 lines
413 B
C#

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