Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/CheckPointDTO.cs
T

12 lines
331 B
C#

namespace WorkFlowCheck.Common.DTO
{
public class CheckPointDTO
{
public int Id { get; set; }
public string ShortName { get; set; }
public string Code { get; set; }
public List<CheckListTemplateRowDTO> CheckListTemplateRowDTO { get; set; } = new List<CheckListTemplateRowDTO>();
}
}