19 lines
574 B
C#
19 lines
574 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.Common.DTO
|
|
{
|
|
public class CheckListHeaderDTO
|
|
{
|
|
public int Id { get; set; }
|
|
public string ShortName { get; set; } = null!;
|
|
public string Description { get; set; } = null!;
|
|
public string DocumentNumber { get; set; } = null!;
|
|
public Guid GuidNumber { get; set; }
|
|
public required ICollection<CheckListRowDTO> CheckListRowDTO { get; set; } = new List<CheckListRowDTO>();
|
|
}
|
|
}
|