using System.Collections.Generic; using InABox.Clients; namespace InABox.Configuration { public class ConnectionSettings : LocalConfigurationSettings { public string URL { get; set; } public int Port { get; set; } public SerializerProtocol Protocol { get; set; } public string UserID { get; set; } public string Password { get; set; } public Dictionary ButtonFavourites { get; set; } } }