Ellenőrzés lezárása

This commit is contained in:
2025-04-14 14:11:57 +02:00
parent 29200ae418
commit 0811111865
10 changed files with 255 additions and 18 deletions
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class CheckListHeaderCloseDTO
{
public int Id { get; set; }
public string CloseReason { get; set; } = null!;
public int UserId { get; set; }
}
}