ConnectionResult.cs 432 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.ApiClient
  3. {
  4. public class ConnectionResult
  5. {
  6. public ConnectionState State { get; set; }
  7. public List<ServerInfo> Servers { get; set; }
  8. public IApiClient ApiClient { get; set; }
  9. public ConnectionResult()
  10. {
  11. State = ConnectionState.Unavailable;
  12. Servers = new List<ServerInfo>();
  13. }
  14. }
  15. }