DTO javítás

This commit is contained in:
2025-02-19 14:17:52 +01:00
parent 2f0b9e1452
commit 2ae985c6e0
2 changed files with 11 additions and 0 deletions
@@ -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!;
}
}