hytos / DTI_PID / SPPIDConverter / BaseModel / TrimLine.cs @ 54be6611
이력 | 보기 | 이력해설 | 다운로드 (1.32 KB)
1 | f1232880 | gaqhf | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace Converter.BaseModel |
||
8 | { |
||
9 | public class TrimLine |
||
10 | { |
||
11 | private string _UID; |
||
12 | private string _TEXT; |
||
13 | private string _LOCATION; |
||
14 | private string _WIDTH; |
||
15 | private string _HEIGHT; |
||
16 | private double _ANGLE; |
||
17 | private string _AREA; |
||
18 | private List<LineRun> _RUNS = new List<LineRun>(); |
||
19 | private List<Property> _PROPERTIES = new List<Property>(); |
||
20 | private List<Attribute> _ATTRIBUTES = new List<Attribute>(); |
||
21 | |||
22 | public string UID { get => _UID; set => _UID = value; } |
||
23 | public string TEXT { get => _TEXT; set => _TEXT = value; } |
||
24 | public string LOCATION { get => _LOCATION; set => _LOCATION = value; } |
||
25 | public string WIDTH { get => _WIDTH; set => _WIDTH = value; } |
||
26 | public string HEIGHT { get => _HEIGHT; set => _HEIGHT = value; } |
||
27 | public double ANGLE { get => _ANGLE; set => _ANGLE = value; } |
||
28 | public string AREA { get => _AREA; set => _AREA = value; } |
||
29 | public List<LineRun> RUNS { get => _RUNS; set => _RUNS = value; } |
||
30 | public List<Property> PROPERTIES { get => _PROPERTIES; set => _PROPERTIES = value; } |
||
31 | public List<Attribute> ATTRIBUTES { get => _ATTRIBUTES; set => _ATTRIBUTES = value; } |
||
32 | } |
||
33 | } |