ConnectionSettings.cs 383 B

123456789101112131415
  1. using InABox.Clients;
  2. using InABox.Configuration;
  3. namespace comal.timesheets
  4. {
  5. public class ConnectionSettings : ILocalConfigurationSettings
  6. {
  7. public string URL { get; set; }
  8. public int Port { get; set; }
  9. public SerializerProtocol Protocol { get; set; }
  10. public string UserID { get; set; }
  11. public string Password { get; set; }
  12. }
  13. }