jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs

13 lines
270 B
C#
Raw Normal View History

2014-10-08 16:31:44 -07:00
namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
2014-10-13 13:14:53 -07:00
SignedIn = 3,
2014-10-28 16:17:55 -07:00
ServerSelection = 4,
2015-01-29 22:18:32 -07:00
ConnectSignIn = 5,
OfflineSignIn = 6,
OfflineSignedIn = 7
2014-10-08 16:31:44 -07:00
}
}