hytos / DTI_PID / SPPIDConverter / Model / SPPID_Document.cs @ 30d2cfcc
이력 | 보기 | 이력해설 | 다운로드 (805 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 | using Converter.BaseModel; |
||
7 | bca81f4c | gaqhf | using Converter.SPPID.Util; |
8 | bca86986 | gaqhf | |
9 | b8e2644e | gaqhf | namespace Converter.SPPID.Model |
10 | bca86986 | gaqhf | { |
11 | public class SPPID_Document : Document |
||
12 | { |
||
13 | public SPPID_Document(string xmlPath) : base(xmlPath) |
||
14 | { |
||
15 | aadf6821 | gaqhf | |
16 | bca86986 | gaqhf | } |
17 | 88365b05 | gaqhf | |
18 | bca86986 | gaqhf | 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 | 4314b3f3 | gaqhf | public string Template { get; set; } |
27 | bca86986 | gaqhf | } |
28 | } |