hytos / DTI_PID / ID2PSN / Object / VentDrainInfo.cs @ abc4250b
이력 | 보기 | 이력해설 | 다운로드 (761 Bytes)
1 |
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 VentDrainInfo |
10 |
{ |
11 |
private string _UID; |
12 |
public string UID { get { return _UID; } } |
13 |
private List<VentDrainItem> _VentDrainItems = new List<VentDrainItem>(); |
14 |
public List<VentDrainItem> VentDrainItems { get { return _VentDrainItems; } set { _VentDrainItems = value; } } |
15 |
public string Description { get; set; } |
16 |
public VentDrainInfo(string UID) |
17 |
{ |
18 |
_UID = UID; |
19 |
Description = string.Empty; |
20 |
} |
21 |
} |
22 |
|
23 |
public class VentDrainItem |
24 |
{ |
25 |
public int Index { get; set; } |
26 |
public string Name { get; set; } |
27 |
} |
28 |
} |