jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs
2014-10-28 19:17:55 -04:00

11 lines
214 B
C#

namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
SignedIn = 3,
ServerSelection = 4,
ConnectSignIn = 5
}
}