프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

hytos / DTI_PID / APIDConverter / Model / PlantItem / Document.cs @ db06b100

이력 | 보기 | 이력해설 | 다운로드 (673 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
using System.IO;
7

    
8
namespace AVEVA.PID.CustomizationUtility.Model
9
{
10
    public class Document
11
    {
12
        public bool Enabled = false;
13

    
14
        public List<Symbol> Symbols { get; set; }
15
        public List<Line> Lines { get; set; }
16
        public List<Equipment> Equipments { get; set; }
17

    
18
        public Document(string xmlPath)
19
        {
20
            Symbols = new List<Symbol>();
21
            Lines = new List<Line>();
22
            Equipments = new List<Equipment>();
23

    
24
            if (File.Exists(xmlPath))
25
            {
26

    
27
            }
28
        }
29
    }
30
}
클립보드 이미지 추가 (최대 크기: 500 MB)