Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/CheckListHeaderNewDTO.cs
T
2025-03-21 16:18:35 +01:00

15 lines
309 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class CheckListHeaderNewDTO
{
public int CheckListTemplateHeaderId { get; set; }
public int UserId { get; set; }
}
}