aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session
diff options
context:
space:
mode:
authortikuf <admin@nyalindee.com>2014-04-16 10:14:20 +1000
committertikuf <admin@nyalindee.com>2014-04-16 10:14:20 +1000
commit13196544c2ca525068e34d23bd98da551943bbca (patch)
treead9894c55a3f3078c15b7622f424b950524b4e2b /MediaBrowser.Model/Session
parentf9eede391b2de2ce80e75d8345aade14f70f1b9d (diff)
parentab5f8ed13679dbe1763cafc599a8f566a36a4a14 (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Model/Session')
-rw-r--r--MediaBrowser.Model/Session/GeneralCommand.cs4
-rw-r--r--MediaBrowser.Model/Session/PlaystateCommand.cs4
-rw-r--r--MediaBrowser.Model/Session/SessionInfoDto.cs14
3 files changed, 11 insertions, 11 deletions
diff --git a/MediaBrowser.Model/Session/GeneralCommand.cs b/MediaBrowser.Model/Session/GeneralCommand.cs
index a50c3b5fe..b75b49e92 100644
--- a/MediaBrowser.Model/Session/GeneralCommand.cs
+++ b/MediaBrowser.Model/Session/GeneralCommand.cs
@@ -46,6 +46,8 @@ namespace MediaBrowser.Model.Session
ToggleMute = 21,
SetVolume = 22,
SetAudioStreamIndex = 23,
- SetSubtitleStreamIndex = 24
+ SetSubtitleStreamIndex = 24,
+ ToggleFullscreen = 25,
+ DisplayContent = 26
}
}
diff --git a/MediaBrowser.Model/Session/PlaystateCommand.cs b/MediaBrowser.Model/Session/PlaystateCommand.cs
index 91572ba62..6466c6485 100644
--- a/MediaBrowser.Model/Session/PlaystateCommand.cs
+++ b/MediaBrowser.Model/Session/PlaystateCommand.cs
@@ -31,10 +31,6 @@ namespace MediaBrowser.Model.Session
/// </summary>
Seek,
/// <summary>
- /// The fullscreen
- /// </summary>
- Fullscreen,
- /// <summary>
/// The rewind
/// </summary>
Rewind,
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs
index 4c51070ee..3754b07c7 100644
--- a/MediaBrowser.Model/Session/SessionInfoDto.cs
+++ b/MediaBrowser.Model/Session/SessionInfoDto.cs
@@ -52,6 +52,12 @@ namespace MediaBrowser.Model.Session
public string UserId { get; set; }
/// <summary>
+ /// Gets or sets the user primary image tag.
+ /// </summary>
+ /// <value>The user primary image tag.</value>
+ public Guid? UserPrimaryImageTag { get; set; }
+
+ /// <summary>
/// Gets or sets the name of the user.
/// </summary>
/// <value>The name of the user.</value>
@@ -164,12 +170,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;
@@ -203,10 +203,12 @@ namespace MediaBrowser.Model.Session
public class ClientCapabilities
{
public List<string> PlayableMediaTypes { get; set; }
+ public List<string> SupportedCommands { get; set; }
public ClientCapabilities()
{
PlayableMediaTypes = new List<string>();
+ SupportedCommands = new List<string>();
}
}
}