Newer
Older
GHFX_REFACTOR / MarkerLayer.cs
wxn on 9 Nov 2016 519 bytes 冗余代码整理
using System.Collections.Generic;

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;
        }
    }
}