Display client version in the dashboard

This commit is contained in:
Luke Pulverenti
2013-07-09 12:11:16 -04:00
parent 48265fefa4
commit 66624293ac
21 changed files with 266 additions and 144 deletions

View File

@@ -1,25 +1,6 @@

namespace MediaBrowser.Model.Session
{
/// <summary>
/// Class PlaystateRequest
/// </summary>
public class PlaystateRequest
{
/// <summary>
/// Gets or sets the command.
/// </summary>
/// <value>The command.</value>
public PlaystateCommand Command { get; set; }
/// <summary>
/// Gets or sets the seek position.
/// Only applicable to seek commands.
/// </summary>
/// <value>The seek position.</value>
public long? SeekPosition { get; set; }
}
/// <summary>
/// Enum PlaystateCommand
/// </summary>
@@ -50,4 +31,11 @@ namespace MediaBrowser.Model.Session
/// </summary>
Seek
}
public class PlayStateRequest
{
public PlaystateCommand Command { get; set; }
public long? SeekPosition { get; set; }
}
}

View File

@@ -22,6 +22,12 @@ namespace MediaBrowser.Model.Session
/// </summary>
/// <value>The name of the user.</value>
public string UserName { get; set; }
/// <summary>
/// Gets or sets the application version.
/// </summary>
/// <value>The application version.</value>
public string ApplicationVersion { get; set; }
/// <summary>
/// Gets or sets the type of the client.