11 lines
279 B
C#
11 lines
279 B
C#
namespace ReportingServices.Models.ProductionReport
|
|
{
|
|
public class QuarterlyTargets
|
|
{
|
|
public int Reactor_Outs { get; set; }
|
|
public int Yield_Outs { get; set; }
|
|
public int IFX_Scrap { get; set; }
|
|
public float Yield { get; set; }
|
|
}
|
|
}
|