hytos / DTI_PID / BaseModel / Model / Text.cs @ 241c928a
이력 | 보기 | 이력해설 | 다운로드 (1.21 KB)
1 | 96a2080c | 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 | aadf6821 | gaqhf | public class Text |
10 | 96a2080c | gaqhf | { |
11 | 60244a8b | gaqhf | private string _UID; |
12 | private string _ATTRIBUTEVALUE; |
||
13 | private string _NAME; |
||
14 | private string _LOCATION; |
||
15 | private string _VALUE; |
||
16 | private double _ANGLE; |
||
17 | private string _WIDTH; |
||
18 | private string _HEIGHT; |
||
19 | private string _AREA; |
||
20 | 241c928a | gaqhf | private SPPID_Info _SPPID; |
21 | 60244a8b | gaqhf | |
22 | public string UID { get => _UID; set => _UID = value; } |
||
23 | public string ATTRIBUTEVALUE { get => _ATTRIBUTEVALUE; set => _ATTRIBUTEVALUE = value; } |
||
24 | public string NAME { get => _NAME; set => _NAME = value; } |
||
25 | public string LOCATION { get => _LOCATION; set => _LOCATION = value; } |
||
26 | public string VALUE { get => _VALUE; set => _VALUE = value; } |
||
27 | public double ANGLE { get => _ANGLE; set => _ANGLE = value; } |
||
28 | public string WIDTH { get => _WIDTH; set => _WIDTH = value; } |
||
29 | public string HEIGHT { get => _HEIGHT; set => _HEIGHT = value; } |
||
30 | public string AREA { get => _AREA; set => _AREA = value; } |
||
31 | 241c928a | gaqhf | public SPPID_Info SPPID { get => _SPPID; set => _SPPID = value; } |
32 | 96a2080c | gaqhf | } |
33 | } |