jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs

11 lines
214 B
C#
Raw Normal View History

2014-10-09 01:31:44 +02:00
namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
2014-10-13 22:14:53 +02:00
SignedIn = 3,
2014-10-29 00:17:55 +01:00
ServerSelection = 4,
ConnectSignIn = 5
2014-10-09 01:31:44 +02:00
}
}