jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs

9 lines
158 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,
SignedIn = 3
}
}