jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs

10 lines
187 B
C#
Raw Normal View History

2014-10-08 23:31:44 +00:00
namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
2014-10-13 20:14:53 +00:00
SignedIn = 3,
ServerSelection = 4
2014-10-08 23:31:44 +00:00
}
}