| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | using InABox.Clients;using InABox.Configuration;namespace Comal.Classes{    public class AutoDiscoverySettings : LocalConfigurationSettings    {        public AutoDiscoverySettings()        {            Name = "PRS";            Logo = new byte[] { };            URL = "http://127.0.0.1";            Port = 8000;            UpdateLocation = "";            LibraryLocation = "";            Protocol = SerializerProtocol.Rest;            GoogleAPIKey = "";            UpdateChannel = AutoUpdateChannel.Stable;            ColorScheme = "#FF6495ED";  // CornflowerBlue        }        public string Name { get; set; }        public string URL { get; set; }        public int Port { get; set; }        public SerializerProtocol Protocol { get; set; }        public AutoUpdateType UpdateType { get; set; }        public string UpdateLocation { get; set; }        public string LibraryLocation { get; set; }        public byte[] Logo { get; set; }        public bool UpdateAdmin { get; set; }        public AutoUpdateChannel UpdateChannel { get; set; }        public string GoogleAPIKey { get; set; }                public string ColorScheme { get; set; }    }}
 |