Newer
Older
GHFX_REFACTOR / Backup / MarkerLayer.cs
wxn on 2 Nov 2016 571 bytes 提交
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Cyberpipe
{
    public class MarkerLayer
    {
        public string layerName;
        public string tableName;
        public Dictionary<string, string> fields;
        public int alarmValue = 0;

        public MarkerLayer()
        { }
        public MarkerLayer(string _layerName, string _tableName, Dictionary<string, string> _fields)
        {
            layerName = _layerName;
            tableName = _tableName;
            fields = _fields;
        }
    }
}