using System; using InABox.Configuration; namespace Comal.Classes { public enum LiveMapStyle { OSM, BingStandard, BingTerrain, BingTerrainWithLabels, GoogleStandard, GoogleTerrain, GoogleTerrainWithLabels } public class LiveMapsSettings : IUserConfigurationSettings { [Obsolete("Replaced with EntityType", true)] public int ViewType { get; set; } [Obsolete("Replaced with EntityGroup", true)] public int ViewGroup { get; set; } public String? EntityType { get; set; } public Guid EntityGroup { get; set; } public LiveMapStyle MapStyle { get; set; } public String ApiKey { get; set; } } }