Files
jellyfin-jellyfin-1/MediaBrowser.Model/ApiClient/ConnectionState.cs

11 lines
214 B
C#
Raw Normal View History

2014-10-08 19:31:44 -04:00
namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
2014-10-13 16:14:53 -04:00
SignedIn = 3,
2014-10-28 19:17:55 -04:00
ServerSelection = 4,
ConnectSignIn = 5
2014-10-08 19:31:44 -04:00
}
}