diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-11 23:02:22 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-11 23:02:22 -0500 |
| commit | bbaa0977fdeaa16f0d43bd043ebf794d1b7aec83 (patch) | |
| tree | ab4544f31be0b1ac0e5ee1057d6bc6bc5f5cde0f /MediaBrowser.Controller/Session/SessionInfo.cs | |
| parent | 1a81f310a614542471a03bd8993eeded6ab81f10 (diff) | |
cache now playing item
Diffstat (limited to 'MediaBrowser.Controller/Session/SessionInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index b3e82f925..343b15a04 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -3,6 +3,7 @@ using MediaBrowser.Model.Session; using System; using System.Collections.Generic; using System.Linq; +using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Session { @@ -106,7 +107,9 @@ namespace MediaBrowser.Controller.Session /// </summary> /// <value>The now playing item.</value> public BaseItemInfo NowPlayingItem { get; set; } - + + public BaseItem FullNowPlayingItem { get; set; } + /// <summary> /// Gets or sets the device id. /// </summary> |
