hytos / DTI_PID / BaseModel / Model / ChildSymbol.cs @ 39a2a688
이력 | 보기 | 이력해설 | 다운로드 (976 Bytes)
1 | f92c8fb8 | 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 ChildSymbol |
||
10 | { |
||
11 | 30d2cfcc | gaqhf | private int _ParentAt; |
12 | private string _Direction; |
||
13 | private string _NAME; |
||
14 | private List<ChildSymbol> _ChildSymbols = new List<ChildSymbol>(); |
||
15 | private List<Connector> _Connectors = new List<Connector>(); |
||
16 | 39a2a688 | gaqhf | private SPPIDSymbolInfo _SPPID; |
17 | f92c8fb8 | gaqhf | |
18 | 30d2cfcc | gaqhf | public string NAME { get => _NAME; set => _NAME = value; } |
19 | public List<ChildSymbol> ChildSymbols { get => _ChildSymbols; set => _ChildSymbols = value; } |
||
20 | public int ParentAt { get => _ParentAt; set => _ParentAt = value; } |
||
21 | public string Direction { get => _Direction; set => _Direction = value; } |
||
22 | public List<Connector> Connectors { get => _Connectors; set => _Connectors = value; } |
||
23 | 39a2a688 | gaqhf | public SPPIDSymbolInfo SPPID { get => _SPPID; set => _SPPID = value; } |
24 | f92c8fb8 | gaqhf | } |
25 | } |