hytos / DTI_PID / BaseModel / Model / Line.cs @ 0d8062b2
이력 | 보기 | 이력해설 | 다운로드 (1.06 KB)
1 |
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 Line |
10 |
{ |
11 |
private string _OWNER; |
12 |
private string _UID; |
13 |
private string _STARTPOINT; |
14 |
private string _ENDPOINT; |
15 |
private string _TYPE; |
16 |
private string _AREA; |
17 |
private string _THICKNESS; |
18 |
private List<Connector> _CONNECTOR = new List<Connector>(); |
19 |
|
20 |
public string OWNER { get => _OWNER; set => _OWNER = value; } |
21 |
public string UID { get => _UID; set => _UID = value; } |
22 |
public string STARTPOINT { get => _STARTPOINT; set => _STARTPOINT = value; } |
23 |
public string ENDPOINT { get => _ENDPOINT; set => _ENDPOINT = value; } |
24 |
public string TYPE { get => _TYPE; set => _TYPE = value; } |
25 |
public string AREA { get => _AREA; set => _AREA = value; } |
26 |
public string THICKNESS { get => _THICKNESS; set => _THICKNESS = value; } |
27 |
public List<Connector> CONNECTOR { get => _CONNECTOR; set => _CONNECTOR = value; } |
28 |
} |
29 |
} |