aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/SessionInfoDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Session/SessionInfoDto.cs')
-rw-r--r--MediaBrowser.Model/Session/SessionInfoDto.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs
index 0548876a1..2b9c1a64e 100644
--- a/MediaBrowser.Model/Session/SessionInfoDto.cs
+++ b/MediaBrowser.Model/Session/SessionInfoDto.cs
@@ -30,12 +30,36 @@ namespace MediaBrowser.Model.Session
public DateTime LastActivityDate { get; set; }
/// <summary>
+ /// Gets or sets the now viewing context.
+ /// </summary>
+ /// <value>The now viewing context.</value>
+ public string NowViewingContext { get; set; }
+
+ /// <summary>
+ /// Gets or sets the type of the now viewing item.
+ /// </summary>
+ /// <value>The type of the now viewing item.</value>
+ public string NowViewingItemType { get; set; }
+
+ /// <summary>
+ /// Gets or sets the now viewing item identifier.
+ /// </summary>
+ /// <value>The now viewing item identifier.</value>
+ public string NowViewingItemIdentifier { get; set; }
+
+ /// <summary>
/// Gets or sets the name of the device.
/// </summary>
/// <value>The name of the device.</value>
public string DeviceName { 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>
+ public bool? IsPaused { get; set; }
+
+ /// <summary>
/// Gets or sets the now playing item.
/// </summary>
/// <value>The now playing item.</value>