hytos / DTI_PID / SPPIDConverter / Model / SPPID_Document.cs @ 4314b3f3
이력 | 보기 | 이력해설 | 다운로드 (777 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
using Converter.BaseModel; |
7 |
|
8 |
namespace Converter.SPPID.Model |
9 |
{ |
10 |
public class SPPID_Document : Document |
11 |
{ |
12 |
public SPPID_Document(string xmlPath) : base(xmlPath) |
13 |
{ |
14 |
|
15 |
} |
16 |
|
17 |
public List<SymbolMapping> SymbolMappings { get; set; } |
18 |
public List<LineMapping> LineMappings { get; set; } |
19 |
public List<LineNumberMapping> LineNumberMappings { get; set; } |
20 |
public List<AssociationMapping> AssociationMappings { get; set; } |
21 |
|
22 |
public string DrawingName { get; set; } |
23 |
public string DrawingNumber { get; set; } |
24 |
public string Unit { get; set; } |
25 |
public string Template { get; set; } |
26 |
} |
27 |
} |