PDSF (Process Data Standard Format) to use EAF for

pushing to OI
This commit is contained in:
2023-07-24 13:29:13 -07:00
parent 6668806432
commit 4cc5219409
28 changed files with 268 additions and 329 deletions

View File

@ -0,0 +1,15 @@
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; }
}