diff --git a/src/WorkFlowCheck.Common/DTO/CheckListTemplateHeader.cs b/src/WorkFlowCheck.Common/DTO/CheckListTemplateHeaderDTO.cs similarity index 100% rename from src/WorkFlowCheck.Common/DTO/CheckListTemplateHeader.cs rename to src/WorkFlowCheck.Common/DTO/CheckListTemplateHeaderDTO.cs diff --git a/src/WorkFlowCheck.Common/DTO/CheckListTemplateRowDTO.cs b/src/WorkFlowCheck.Common/DTO/CheckListTemplateRowDTO.cs new file mode 100644 index 0000000..27e65c6 --- /dev/null +++ b/src/WorkFlowCheck.Common/DTO/CheckListTemplateRowDTO.cs @@ -0,0 +1,11 @@ +using System.ComponentModel.DataAnnotations.Schema; + +namespace WorkFlowCheck.Common.DTO +{ + public class CheckListTemplateRowDTO + { + public int Id { get; set; } + public string ShortName { get; set; } = null!; + public string Description { get; set; } = null!; + } +}