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

10 lines
187 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,
ServerSelection = 4
2014-10-08 19:31:44 -04:00
}
}