17 lines
411 B
C#

namespace ReportingServices.Models.PlanningReport
{
public class ReactorPSNWORuns
{
public string REACTOR { get; set; }
public string PSN { get; set; }
public int WO_COUNT { get; set; }
public ReactorPSNWORuns(string reactor, string psn, int wo_count)
{
REACTOR = reactor;
PSN = psn;
WO_COUNT = wo_count;
}
}
}