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