21 lines
615 B
C#

namespace ReportingServices.Models.ProductionReport
{
public class RDS
{
public int Reactor { get; set; }
public string ReactorType { get; set; }
public DateTime DateOut { get; set; }
public int UnloadTemp { get; set; }
public string LayerType { get; set; }
public RDS(int reactor, string reactorType, DateTime dateOut, int unloadTemp, string layerType)
{
Reactor = reactor;
ReactorType = reactorType;
DateOut = dateOut;
UnloadTemp = unloadTemp;
LayerType = layerType;
}
}
}