namespace FoodLabeling.Application.Contracts.Dtos.LabelTemplate; public class LabelTemplateGetOutputDto { public string Id { get; set; } = string.Empty; public string TemplateCode { get; set; } = string.Empty; public string TemplateName { get; set; } = string.Empty; public string? LabelType { get; set; } public string Unit { get; set; } = string.Empty; public decimal Width { get; set; } public decimal Height { get; set; } public string AppliedLocationType { get; set; } = "ALL"; public bool ShowRuler { get; set; } public bool ShowGrid { get; set; } public int VersionNo { get; set; } public bool State { get; set; } public List Elements { get; set; } = new(); public List AppliedLocationIds { get; set; } = new(); public List TemplateProductDefaults { get; set; } = new(); }