diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-06 13:53:23 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-06 13:53:23 -0400 |
| commit | c60103df64104459883f1244363cc9cd39187545 (patch) | |
| tree | 9c2d90fb6b59905a265ffd3f10a036d3e50ce487 /MediaBrowser.Model/Session/SessionInfoDto.cs | |
| parent | 241c43e9a1f9ad2fbc940626f9c85c469402bc55 (diff) | |
chromecast updates
Diffstat (limited to 'MediaBrowser.Model/Session/SessionInfoDto.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/SessionInfoDto.cs | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs index 5349a6360f..4c51070ee1 100644 --- a/MediaBrowser.Model/Session/SessionInfoDto.cs +++ b/MediaBrowser.Model/Session/SessionInfoDto.cs @@ -112,6 +112,24 @@ namespace MediaBrowser.Model.Session public string DeviceName { get; set; } /// <summary> + /// Gets or sets the volume level. + /// </summary> + /// <value>The volume level.</value> + public int? VolumeLevel { get; set; } + + /// <summary> + /// Gets or sets the index of the now playing audio stream. + /// </summary> + /// <value>The index of the now playing audio stream.</value> + public int? NowPlayingAudioStreamIndex { get; set; } + + /// <summary> + /// Gets or sets the index of the now playing subtitle stream. + /// </summary> + /// <value>The index of the now playing subtitle stream.</value> + public int? NowPlayingSubtitleStreamIndex { get; set; } + + /// <summary> /// Gets or sets a value indicating whether this instance is paused. /// </summary> /// <value><c>true</c> if this instance is paused; otherwise, <c>false</c>.</value> @@ -140,12 +158,6 @@ namespace MediaBrowser.Model.Session /// </summary> /// <value>The device id.</value> public string DeviceId { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether [supports fullscreen toggle]. - /// </summary> - /// <value><c>true</c> if [supports fullscreen toggle]; otherwise, <c>false</c>.</value> - public bool SupportsFullscreenToggle { get; set; } /// <summary> /// Gets or sets a value indicating whether [supports remote control]. @@ -154,12 +166,6 @@ namespace MediaBrowser.Model.Session public bool SupportsRemoteControl { 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> |
