1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using InABox.Clients;
- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class AutoDiscoverySettings : ILocalConfigurationSettings
- {
- public AutoDiscoverySettings()
- {
- Name = "PRS";
- Logo = new byte[] { };
- URLs = new string[] { "127.0.0.1:8000" };
- UpdateLocation = "";
- LibraryLocation = "";
- Protocol = SerializerProtocol.Rest;
- GoogleAPIKey = "";
- UpdateChannel = AutoUpdateChannel.Stable;
- ColorScheme = "#FF6495ED"; // CornflowerBlue
- }
- public string Name { get; set; }
- public string[] URLs { 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; }
- }
- }
|