aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/ConnectionResult.cs
blob: 0b6c0bfe95463af86b43c73aefab8da271b13409 (plain)
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;
        }
    }
}