From 44f33fdb555aa9be3d710f7e81b995730ae836be Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 10 May 2013 08:18:07 -0400 Subject: progress on remote control --- MediaBrowser.Model/Session/SessionInfoDto.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'MediaBrowser.Model/Session') 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 @@ -29,12 +29,36 @@ namespace MediaBrowser.Model.Session /// The last activity date. public DateTime LastActivityDate { get; set; } + /// + /// Gets or sets the now viewing context. + /// + /// The now viewing context. + public string NowViewingContext { get; set; } + + /// + /// Gets or sets the type of the now viewing item. + /// + /// The type of the now viewing item. + public string NowViewingItemType { get; set; } + + /// + /// Gets or sets the now viewing item identifier. + /// + /// The now viewing item identifier. + public string NowViewingItemIdentifier { get; set; } + /// /// Gets or sets the name of the device. /// /// The name of the device. public string DeviceName { get; set; } + /// + /// Gets or sets a value indicating whether this instance is paused. + /// + /// true if this instance is paused; otherwise, false. + public bool? IsPaused { get; set; } + /// /// Gets or sets the now playing item. /// -- cgit v1.2.3