aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/ConnectionResult.cs
blob: 86c94c3d582f902070e70e0ab376ce0496ec3afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.Generic;

namespace MediaBrowser.Model.ApiClient
{
    public class ConnectionResult
    {
        public ConnectionState State { get; set; }
        public List<ServerInfo> Servers { get; set; }
        public IApiClient ApiClient { get; set; }

        public ConnectionResult()
        {
            State = ConnectionState.Unavailable;
            Servers = new List<ServerInfo>();
        }
    }
}