CheckListRow megjelenítése

This commit is contained in:
2025-03-26 09:14:27 +01:00
parent ace4130f31
commit 83980667d7
4 changed files with 215 additions and 2 deletions
@@ -12,7 +12,7 @@ namespace WorkFlowCheck.Common.DTO
public int CheckListHeaderId { get; set; }
public int CheckListTemplateRowId { get; set; }
public CheckListTemplateRowDTO CheckListTemplateRowDTO { get; set; }
public string GroupName => $"AnswerGroup_{CheckListTemplateRowDTO.RowIndex}";
public string GroupName => $"AnswerGroup_{CheckListTemplateRowDTO?.RowIndex ?? 0}";
public string Answer { get; set; } = null!;
public bool? AnswerYes { get; set; } = null!;
public bool? AnswerNo { get; set; } = null!;