Ready to Test
This commit is contained in:
18
Shared/DataModels/AwaitingDispo.cs
Normal file
18
Shared/DataModels/AwaitingDispo.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace OI.Metrology.Shared.DataModels;
|
||||
|
||||
public class AwaitingDispo
|
||||
{
|
||||
public string? PK { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public int ID { get; set; }
|
||||
public int ToolTypeID { get; set; }
|
||||
public string? ToolType { get; set; }
|
||||
public string? Tool { get; set; }
|
||||
public string? Reactor { get; set; }
|
||||
public string? RDS { get; set; }
|
||||
public string? PSN { get; set; }
|
||||
public string? Layer { get; set; }
|
||||
public string? Zone { get; set; }
|
||||
public DateTime InsertDate { get; set; }
|
||||
public DateTime Expiration { get; set; }
|
||||
}
|
11
Shared/DataModels/HeaderCommon.cs
Normal file
11
Shared/DataModels/HeaderCommon.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace OI.Metrology.Shared.DataModels;
|
||||
|
||||
public class HeaderCommon
|
||||
{
|
||||
public long ID { get; set; }
|
||||
public DateTime InsertDate { get; set; }
|
||||
public Guid AttachmentID { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? Recipe { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
}
|
12
Shared/DataModels/SelectListGroup.cs
Normal file
12
Shared/DataModels/SelectListGroup.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace OI.Metrology.Shared.Models;
|
||||
|
||||
public class SelectListGroup
|
||||
{
|
||||
|
||||
public bool Disabled { get; set; }
|
||||
public string? Name { get; set; }
|
||||
|
||||
public SelectListGroup()
|
||||
{ }
|
||||
|
||||
}
|
36
Shared/DataModels/SelectListItem.cs
Normal file
36
Shared/DataModels/SelectListItem.cs
Normal file
@ -0,0 +1,36 @@
|
||||
namespace OI.Metrology.Shared.Models;
|
||||
|
||||
public class SelectListItem
|
||||
{
|
||||
|
||||
public bool Disabled { get; set; }
|
||||
public SelectListGroup? Group { get; set; }
|
||||
public bool Selected { get; set; }
|
||||
public string? Text { get; set; }
|
||||
public string? Value { get; set; }
|
||||
|
||||
public SelectListItem()
|
||||
{ }
|
||||
|
||||
public SelectListItem(string text, string value)
|
||||
{
|
||||
Text = text;
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public SelectListItem(string text, string value, bool selected)
|
||||
{
|
||||
Text = text;
|
||||
Value = value;
|
||||
Selected = selected;
|
||||
}
|
||||
|
||||
public SelectListItem(string text, string value, bool selected, bool disabled)
|
||||
{
|
||||
Text = text;
|
||||
Value = value;
|
||||
Selected = selected;
|
||||
Disabled = disabled;
|
||||
}
|
||||
|
||||
}
|
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; }
|
||||
}
|
13
Shared/DataModels/ToolTypeMetadata.cs
Normal file
13
Shared/DataModels/ToolTypeMetadata.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
Reference in New Issue
Block a user