Ran formatting through code
This commit is contained in:
@ -1,16 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ReportingServices.Shared.Models.ProductionReport
|
||||
namespace ReportingServices.Shared.Models.ProductionReport;
|
||||
|
||||
public class OutsAndScrapTotal
|
||||
{
|
||||
public class OutsAndScrapTotal
|
||||
{
|
||||
[JsonPropertyName("Outs")]
|
||||
public int Outs { get; set; }
|
||||
[JsonPropertyName("CustomerScrap")]
|
||||
public int CustomerScrap { get; set; }
|
||||
[JsonPropertyName("ManufacturingScrap")]
|
||||
public int ManufacturingScrap { get; set; }
|
||||
[JsonPropertyName("ProductionScrap")]
|
||||
public int ProductionScrap { get; set; }
|
||||
}
|
||||
}
|
||||
[JsonPropertyName("Outs")]
|
||||
public int Outs { get; set; }
|
||||
[JsonPropertyName("CustomerScrap")]
|
||||
public int CustomerScrap { get; set; }
|
||||
[JsonPropertyName("ManufacturingScrap")]
|
||||
public int ManufacturingScrap { get; set; }
|
||||
[JsonPropertyName("ProductionScrap")]
|
||||
public int ProductionScrap { get; set; }
|
||||
}
|
Reference in New Issue
Block a user