diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-13 13:27:13 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-13 13:27:13 -0400 |
| commit | 8df1ebe49967ed96b85076bf4dbfbf761fb5268d (patch) | |
| tree | d13e5447fa0551a6f6ced8fb09ae6cad3786c0e9 /MediaBrowser.Model/Session | |
| parent | b6ca79b73fdae969773935068c175ace43ac778d (diff) | |
add new mirror mode
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/GeneralCommand.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.Model/Session/SessionInfoDto.cs | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/MediaBrowser.Model/Session/GeneralCommand.cs b/MediaBrowser.Model/Session/GeneralCommand.cs index 4202ec456..b75b49e92 100644 --- a/MediaBrowser.Model/Session/GeneralCommand.cs +++ b/MediaBrowser.Model/Session/GeneralCommand.cs @@ -47,6 +47,7 @@ namespace MediaBrowser.Model.Session SetVolume = 22, SetAudioStreamIndex = 23, SetSubtitleStreamIndex = 24, - ToggleFullscreen = 25 + ToggleFullscreen = 25, + DisplayContent = 26 } } diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs index 4c51070ee..f235cebb3 100644 --- a/MediaBrowser.Model/Session/SessionInfoDto.cs +++ b/MediaBrowser.Model/Session/SessionInfoDto.cs @@ -164,12 +164,6 @@ namespace MediaBrowser.Model.Session /// </summary> /// <value><c>true</c> if [supports remote control]; otherwise, <c>false</c>.</value> public bool SupportsRemoteControl { 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; } public event PropertyChangedEventHandler PropertyChanged; |
