Equipment is kész.

This commit is contained in:
2025-03-20 13:12:05 +01:00
parent bd60138a89
commit ae7ba2342e
19 changed files with 639 additions and 79 deletions
@@ -7,13 +7,13 @@ namespace WorkFlowCheck.Common.DTO
public int Id { get; set; }
public int RowIndex { get; set; }
public int CheckListTemplateHeaderId { get; set; }
public int EquipmentId { get; set; }
public EquipmentDTO EquipmentDTO { get; set; }
public EquipmentDTO? EquipmentDTO { get; set; } = null!;
public int CheckPointId { get; set; }
public CheckPointDTO CheckPointDTO { get; set; }
public CheckPointDTO? CheckPointDTO { get; set; } = null!;
public string OperationDescription { get; set; } = null!;
/// <summary>
@@ -29,6 +29,6 @@ namespace WorkFlowCheck.Common.DTO
/// </summary>
public string AnswerType { get; set; } = null!;
}
}