Ready to Test

This commit is contained in:
2022-07-26 09:34:09 -07:00
commit 2afec95704
1004 changed files with 164796 additions and 0 deletions

View 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; }
}