jellyfin/MediaBrowser.Model/ApiClient/ConnectionState.cs
2014-10-13 16:14:53 -04:00

10 lines
187 B
C#

namespace MediaBrowser.Model.ApiClient
{
public enum ConnectionState
{
Unavailable = 1,
ServerSignIn = 2,
SignedIn = 3,
ServerSelection = 4
}
}