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