aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/ConnectionState.cs
blob: 63e156eb1f06c480218856776a80670b54e72678 (plain)
1
2
3
4
5
6
7
8
9
10
namespace MediaBrowser.Model.ApiClient
{
    public enum ConnectionState
    {
        Unavailable = 1,
        ServerSignIn = 2,
        SignedIn = 3,
        ServerSelection = 4
    }
}