diff options
Diffstat (limited to 'MediaBrowser.Controller/Session/SessionInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index 9dd57d12a..ef39977f0 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -25,6 +25,7 @@ namespace MediaBrowser.Controller.Session }; AdditionalUsers = new List<SessionUserInfo>(); + SupportedCommands = new List<string>(); } public List<SessionUserInfo> AdditionalUsers { get; set; } @@ -168,24 +169,12 @@ namespace MediaBrowser.Controller.Session public ISessionController SessionController { get; set; } /// <summary> - /// Gets or sets a value indicating whether [supports fullscreen toggle]. + /// Gets or sets the supported commands. /// </summary> - /// <value><c>true</c> if [supports fullscreen toggle]; otherwise, <c>false</c>.</value> - public bool SupportsFullscreenToggle { get; set; } + /// <value>The supported commands.</value> + public List<string> SupportedCommands { get; set; } /// <summary> - /// Gets or sets a value indicating whether [supports osd toggle]. - /// </summary> - /// <value><c>true</c> if [supports osd toggle]; otherwise, <c>false</c>.</value> - public bool SupportsOsdToggle { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether [supports navigation commands]. - /// </summary> - /// <value><c>true</c> if [supports navigation commands]; otherwise, <c>false</c>.</value> - public bool SupportsNavigationControl { get; set; } - - /// <summary> /// Gets a value indicating whether this instance is active. /// </summary> /// <value><c>true</c> if this instance is active; otherwise, <c>false</c>.</value> |
