using System.ComponentModel.DataAnnotations.Schema; namespace WorkFlowCheck.Common.DTO { public class CheckListTemplateHeaderDTO { public int Id { get; set; } public string ShortName { get; set; } = null!; public string Description { get; set; } = null!; public required ICollection CheckListTemplateRowDTO { get; set; } = new List(); } }