1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
namespace MediaBrowser.Model.ApiClient { public class ConnectionResult { public ConnectionState State { get; set; } public ServerInfo ServerInfo { get; set; } public IApiClient ApiClient { get; set; } public ConnectionResult() { State = ConnectionState.Unavailable; } } }