Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/CheckListHeaderCloseDTO.cs
T
2025-04-14 14:11:57 +02:00

16 lines
345 B
C#

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; }
}
}