jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs

13 lines
270 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,
2015-01-30 06:18:32 +01:00
ConnectSignIn = 5,
OfflineSignIn = 6,
OfflineSignedIn = 7
2014-10-09 01:31:44 +02:00
}
}