- using InABox.Clients;
- using InABox.Configuration;
- namespace comal.timesheets
- {
- public class ConnectionSettings : ILocalConfigurationSettings
- {
- 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; }
- }
- }
|