oi-metrology/Shared/DataModels/ToolTypeMetadata.cs
2022-07-26 09:34:09 -07:00

13 lines
428 B
C#

namespace OI.Metrology.Shared.DataModels;
public class ToolTypeMetadata
{
public int ToolTypeID { get; set; }
public bool Header { get; set; }
public string? ApiName { get; set; }
public string? ColumnName { get; set; }
public string? DisplayTitle { get; set; }
public int GridDisplayOrder { get; set; }
public string? GridAttributes { get; set; }
public int TableDisplayOrder { get; set; }
}