hytos / DTI_PID / ID2PSN / Object / ValveGroupInfo.cs @ 63ff8e26
이력 | 보기 | 이력해설 | 다운로드 (682 Bytes)
1 | 3610fd3f | LJIYEON | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace ID2PSN |
||
8 | { |
||
9 | public class ValveGroupInfo |
||
10 | { |
||
11 | private List<ValveGroupItem> _ValveGroupItems = new List<ValveGroupItem>(); |
||
12 | public List<ValveGroupItem> ValveGroupItems { get { return _ValveGroupItems; } set { _ValveGroupItems = value; } } |
||
13 | } |
||
14 | |||
15 | public class ValveGroupItem |
||
16 | { |
||
17 | public string OID { get; set; } |
||
18 | public string GroupType { get; set; } |
||
19 | public string TagIdentifier { get; set; } |
||
20 | public string AttributeName { get; set; } |
||
21 | public string SppidSymbolName { get; set; } |
||
22 | } |
||
23 | } |