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