hytos / DTI_PID / SPPIDConverter / BaseModel / SPPID / SPPIDLineInfo.cs @ fae4f386
이력 | 보기 | 이력해설 | 다운로드 (641 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
|
8 |
namespace Converter.BaseModel |
9 |
{ |
10 |
public class SPPIDLineInfo |
11 |
{ |
12 |
public string MAPPINGNAME { get; set; } |
13 |
public double START_X { get; set; } |
14 |
public double START_Y { get; set; } |
15 |
public double END_X { get; set; } |
16 |
public double END_Y { get; set; } |
17 |
public string ModelItemId { get; set; } |
18 |
public List<string> Representations { get => _Representations; set => _Representations = value; } |
19 |
|
20 |
private List<string> _Representations = new List<string>(); |
21 |
} |
22 |
} |