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