hytos / DTI_PID / SPPIDConverter / Model / SPPID_Document.cs @ 30d2cfcc
이력 | 보기 | 이력해설 | 다운로드 (805 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 |
using Converter.SPPID.Util; |
8 |
|
9 |
namespace Converter.SPPID.Model |
10 |
{ |
11 |
public class SPPID_Document : Document |
12 |
{ |
13 |
public SPPID_Document(string xmlPath) : base(xmlPath) |
14 |
{ |
15 |
|
16 |
} |
17 |
|
18 |
public List<SymbolMapping> SymbolMappings { get; set; } |
19 |
public List<LineMapping> LineMappings { get; set; } |
20 |
public List<LineNumberMapping> LineNumberMappings { get; set; } |
21 |
public List<AssociationMapping> AssociationMappings { get; set; } |
22 |
|
23 |
public string DrawingName { get; set; } |
24 |
public string DrawingNumber { get; set; } |
25 |
public string Unit { get; set; } |
26 |
public string Template { get; set; } |
27 |
} |
28 |
} |