From 2ae985c6e02e52d36978be2f140dee145d64732b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Szab=C3=B3?= Date: Wed, 19 Feb 2025 14:17:52 +0100 Subject: [PATCH] =?UTF-8?q?DTO=20jav=C3=ADt=C3=A1s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...emplateHeader.cs => CheckListTemplateHeaderDTO.cs} | 0 .../DTO/CheckListTemplateRowDTO.cs | 11 +++++++++++ 2 files changed, 11 insertions(+) rename src/WorkFlowCheck.Common/DTO/{CheckListTemplateHeader.cs => CheckListTemplateHeaderDTO.cs} (100%) create mode 100644 src/WorkFlowCheck.Common/DTO/CheckListTemplateRowDTO.cs 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!; + } +}