59e51671
“wangming”
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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<LabelTemplateElementDto> Elements { get; set; } = new();
public List<string> AppliedLocationIds { get; set; } = new();
public List<LabelTemplateProductDefaultDto> TemplateProductDefaults { get; set; } = new();
}
|