32 lines
1012 B
C#
32 lines
1012 B
C#
namespace OI.Metrology.Shared.DataModels;
|
|
|
|
public class HeaderCommon
|
|
{
|
|
|
|
public long ID { get; set; }
|
|
public DateTime InsertDate { get; set; }
|
|
public Guid AttachmentID { get; set; }
|
|
public string? Title { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public long ToolTypeID { get; set; }
|
|
public string? ToolTypeName { get; set; }
|
|
|
|
// [Newtonsoft.Json.JsonProperty("Tool")]
|
|
// [System.Text.Json.Serialization.JsonPropertyName("Tool")]
|
|
// public string? Tool { get; set; }
|
|
|
|
// [Newtonsoft.Json.JsonProperty("Equipment ID")]
|
|
// [System.Text.Json.Serialization.JsonPropertyName("Equipment ID")]
|
|
// public string? Equipment_ID { get; set; }
|
|
|
|
public string? MesEntity { get; set; }
|
|
|
|
public string? Employee { get; set; }
|
|
public string? Layer { get; set; }
|
|
public string? PSN { get; set; }
|
|
public string? RDS { get; set; }
|
|
public string? Reactor { get; set; }
|
|
public string? Recipe { get; set; }
|
|
public string? Zone { get; set; }
|
|
|
|
} |