Ready to Test
This commit is contained in:
28
Shared/DataModels/ToolType.cs
Normal file
28
Shared/DataModels/ToolType.cs
Normal file
@ -0,0 +1,28 @@
|
||||
namespace OI.Metrology.Shared.DataModels;
|
||||
|
||||
public class ToolType
|
||||
{
|
||||
public int ID { get; set; }
|
||||
|
||||
public string? ToolTypeName { get; set; }
|
||||
|
||||
public bool HasHeaderAttachments { get; set; }
|
||||
public bool HasDataAttachments { get; set; }
|
||||
|
||||
public string? HeaderTableName { get; set; }
|
||||
public string? DataTableName { get; set; }
|
||||
|
||||
public string? ExportSPName { get; set; }
|
||||
|
||||
public string? HeaderGridAttributes { get; set; }
|
||||
public string? DataGridAttributes { get; set; }
|
||||
|
||||
public string? DataGridSortBy { get; set; }
|
||||
public string? DataGridStatsColumn { get; set; }
|
||||
public string? DataGridStatsStdDevType { get; set; }
|
||||
|
||||
public string? DisplayHeaderAttachment { get; set; }
|
||||
public string? DisplayDataAttachment { get; set; }
|
||||
|
||||
public string? OIExportSPName { get; set; }
|
||||
}
|
Reference in New Issue
Block a user