Némi API hozzáadás

This commit is contained in:
2025-01-28 14:38:28 +01:00
parent e74df61ca0
commit 3669267898
7 changed files with 67 additions and 3 deletions
@@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace WorkFlowCheck.Common.DTO
{
public class CheckListTemplateHeaderDTO
{
public int Id { get; set; }
public string ShortName { get; set; } = null!;
public string Description { get; set; } = null!;
}
}