74 lines
1.6 KiB
C#
74 lines
1.6 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OI.Metrology.Shared.DataModels;
|
|
|
|
public class InfinityQSEvent
|
|
{
|
|
|
|
[JsonPropertyName("F_EVNT")]
|
|
public int Evnt { get; set; }
|
|
|
|
[JsonPropertyName("F_CRTM")]
|
|
public int Crtm { get; set; }
|
|
|
|
[JsonPropertyName("F_EDTM")]
|
|
public int Edtm { get; set; }
|
|
|
|
[JsonPropertyName("F_TYPE")]
|
|
public int Type { get; set; }
|
|
|
|
[JsonPropertyName("F_NAME")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("F_EMPL")]
|
|
public int Empl { get; set; }
|
|
|
|
[JsonPropertyName("F_EVTM")]
|
|
public int Evtm { get; set; }
|
|
|
|
[JsonPropertyName("F_PRCS")]
|
|
public int Prcs { get; set; }
|
|
|
|
[JsonPropertyName("F_PART")]
|
|
public int Part { get; set; }
|
|
|
|
[JsonPropertyName("F_TEST")]
|
|
public int Test { get; set; }
|
|
|
|
[JsonPropertyName("F_SGTM")]
|
|
public int Sgtm { get; set; }
|
|
|
|
[JsonPropertyName("F_ACC")]
|
|
public int Acc { get; set; }
|
|
|
|
[JsonPropertyName("F_ACEM")]
|
|
public int Acem { get; set; }
|
|
|
|
[JsonPropertyName("F_ACTM")]
|
|
public int Actm { get; set; }
|
|
|
|
[JsonPropertyName("F_CAC")]
|
|
public int Cac { get; set; }
|
|
|
|
[JsonPropertyName("F_CAEM")]
|
|
public int Caem { get; set; }
|
|
|
|
[JsonPropertyName("F_CATM")]
|
|
public int Catm { get; set; }
|
|
|
|
[JsonPropertyName("F_FLAG")]
|
|
public int Flag { get; set; }
|
|
|
|
[JsonPropertyName("F_USER")]
|
|
public int User { get; set; }
|
|
|
|
[JsonPropertyName("F_DSBL")]
|
|
public int Dsbl { get; set; }
|
|
|
|
[JsonPropertyName("F_RFC")]
|
|
public int Rfc { get; set; }
|
|
|
|
[JsonPropertyName("F_TRTM")]
|
|
public int Trtm { get; set; }
|
|
|
|
} |