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