Ran formatting through code
This commit is contained in:
@ -1,18 +1,17 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ReportingServices.Shared.Models.ProductionReport
|
||||
namespace ReportingServices.Shared.Models.ProductionReport;
|
||||
|
||||
public class QuarterlyTargets
|
||||
{
|
||||
public class QuarterlyTargets
|
||||
{
|
||||
[JsonPropertyName("Reactor_Outs")]
|
||||
public int Reactor_Outs { get; set; }
|
||||
[JsonPropertyName("Yield_Outs")]
|
||||
public int Yield_Outs { get; set; }
|
||||
[JsonPropertyName("IFX_Scrap")]
|
||||
public int IFX_Scrap { get; set; }
|
||||
[JsonPropertyName("Yield")]
|
||||
public float Yield { get; set; }
|
||||
[JsonPropertyName("PlanWorkingDays")]
|
||||
public int PlanWorkingDays { get; set; }
|
||||
}
|
||||
}
|
||||
[JsonPropertyName("Reactor_Outs")]
|
||||
public int Reactor_Outs { get; set; }
|
||||
[JsonPropertyName("Yield_Outs")]
|
||||
public int Yield_Outs { get; set; }
|
||||
[JsonPropertyName("IFX_Scrap")]
|
||||
public int IFX_Scrap { get; set; }
|
||||
[JsonPropertyName("Yield")]
|
||||
public float Yield { get; set; }
|
||||
[JsonPropertyName("PlanWorkingDays")]
|
||||
public int PlanWorkingDays { get; set; }
|
||||
}
|
Reference in New Issue
Block a user