Newer
Older
EMS_REFACTOR / MarkerLayer.cs
nn-203 on 26 Jul 2017 519 bytes first commit
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;
        }
    }
}