19 lines
566 B
C#
19 lines
566 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ReportingServices.Shared.Models.ProductionReport;
|
|
public class NCR
|
|
{
|
|
[JsonPropertyName("ENTRY_DATE")]
|
|
public DateTime ENTRY_DATE { get; set; }
|
|
[JsonPropertyName("SHIFT")]
|
|
public string SHIFT { get; set; }
|
|
[JsonPropertyName("REACTOR")]
|
|
public string REACTOR { get; set; }
|
|
[JsonPropertyName("RDS_NO")]
|
|
public string RDS_NO { get; set; }
|
|
[JsonPropertyName("TOT_REJ")]
|
|
public int TOT_REJ { get; set; }
|
|
[JsonPropertyName("AC_DESC")]
|
|
public string AC_DESC { get; set; }
|
|
}
|