hytos / DTI_PID / SPPIDConverter / Model / AttributeMapping.cs @ 6b298450
이력 | 보기 | 이력해설 | 다운로드 (832 Bytes)
1 | bca86986 | gaqhf | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | b8e2644e | gaqhf | namespace Converter.SPPID.Model |
8 | bca86986 | gaqhf | { |
9 | 1efc25a3 | gaqhf | public class AttributeMapping |
10 | bca86986 | gaqhf | { |
11 | private string _UID; |
||
12 | private string _DisplayAttribute; |
||
13 | private string _Type; |
||
14 | private string _SPPIDATTRIBUTENAME; |
||
15 | private string _SPPIDSYMBOLNAME; |
||
16 | |||
17 | public string UID { get => _UID; set => _UID = value; } |
||
18 | public string DisplayAttribute { get => _DisplayAttribute; set => _DisplayAttribute = value; } |
||
19 | public string Type { get => _Type; set => _Type = value; } |
||
20 | public string SPPIDATTRIBUTENAME { get => _SPPIDATTRIBUTENAME; set => _SPPIDATTRIBUTENAME = value; } |
||
21 | public string SPPIDSYMBOLNAME { get => _SPPIDSYMBOLNAME; set => _SPPIDSYMBOLNAME = value; } |
||
22 | } |
||
23 | } |