oi-metrology/Shared/DataModels/InboundCommon.cs

15 lines
405 B
C#

namespace OI.Metrology.Shared.DataModels;
public class InboundCommon
{
public string? CellName { get; set; }
public int? Id { get; set; }
public string? PSN { get; set; }
public string? ProcessDataStandardFormat { get; set; }
public string? RDS { get; set; }
public string? Reactor { get; set; }
public string? Recipe { get; set; }
public string? Zone { get; set; }
}