CheckPoint -y CheckListTemplateRow

This commit is contained in:
2025-03-04 13:26:22 +01:00
parent 62dee24619
commit af607f6079
4 changed files with 16 additions and 8 deletions
@@ -1,10 +1,11 @@
namespace WorkFlowCheck.Common.DTO
{
public class CheckPointDTO
public class CheckPointDTO
{
public int Id { get; set; }
public string ShortName { get; set; }
public string Code { get; set; }
public int Id { get; set; }
public string ShortName { get; set; }
public string Code { get; set; }
public List<CheckListTemplateRowDTO> CheckListTemplateRowDTO { get; set; } = new List<CheckListTemplateRowDTO>();
}
}