| | 1 | | using System.Text.Json.Serialization; |
| | 2 | |
|
| | 3 | | namespace ReportingServices.Shared.Models.ProductionReport |
| | 4 | | { |
| | 5 | | public class ToolStateCurrent |
| | 6 | | { |
| | 7 | | [JsonPropertyName("Tool")] |
| 0 | 8 | | public string Tool { get; set; } |
| | 9 | | [JsonPropertyName("TranTime")] |
| 0 | 10 | | public string TranTime { get; set; } |
| | 11 | | [JsonPropertyName("GanttEndTime")] |
| 0 | 12 | | public string GanttEndTime { get; set; } |
| | 13 | | [JsonPropertyName("GanttElapsedHours")] |
| 0 | 14 | | public string GanttElapsedHours { get; set; } |
| | 15 | | [JsonPropertyName("BasicStateDescription")] |
| 0 | 16 | | public string BasicStateDescription { get; set; } |
| | 17 | | [JsonPropertyName("SubState")] |
| 0 | 18 | | public string SubState { get; set; } |
| | 19 | | [JsonPropertyName("ReactorStatus")] |
| 0 | 20 | | public string ReactorStatus { get; set; } |
| | 21 | | [JsonPropertyName("Comment")] |
| 0 | 22 | | public string Comment { get; set; } |
| | 23 | |
|
| | 24 | | } |
| | 25 | | } |