diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-04-01 18:01:56 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-04-01 18:01:56 -0400 |
| commit | f8667ab6c1d0340c47d7b8bd173472a1fde60c10 (patch) | |
| tree | fbc86749c9acbd873fd6822b3d79f3f59e244b83 /MediaBrowser.Model/Session | |
| parent | ddbbe9ce4e054565272a69e1ea709f8df4d96479 (diff) | |
| parent | 42e236915041a63d0b9944b8400cc121a4f3cba4 (diff) | |
Merge pull request #1059 from MediaBrowser/master
release fixes
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/PlaybackProgressInfo.cs | 5 | ||||
| -rw-r--r-- | MediaBrowser.Model/Session/PlaybackStopInfo.cs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/PlaybackProgressInfo.cs b/MediaBrowser.Model/Session/PlaybackProgressInfo.cs index a029df4a93..a7ca09c15a 100644 --- a/MediaBrowser.Model/Session/PlaybackProgressInfo.cs +++ b/MediaBrowser.Model/Session/PlaybackProgressInfo.cs @@ -83,5 +83,10 @@ namespace MediaBrowser.Model.Session /// </summary> /// <value>The live stream identifier.</value> public string LiveStreamId { get; set; } + /// <summary> + /// Gets or sets the play session identifier. + /// </summary> + /// <value>The play session identifier.</value> + public string PlaySessionId { get; set; } } }
\ No newline at end of file diff --git a/MediaBrowser.Model/Session/PlaybackStopInfo.cs b/MediaBrowser.Model/Session/PlaybackStopInfo.cs index a3bdc9a960..80d719f037 100644 --- a/MediaBrowser.Model/Session/PlaybackStopInfo.cs +++ b/MediaBrowser.Model/Session/PlaybackStopInfo.cs @@ -41,5 +41,10 @@ namespace MediaBrowser.Model.Session /// </summary> /// <value>The live stream identifier.</value> public string LiveStreamId { get; set; } + /// <summary> + /// Gets or sets the play session identifier. + /// </summary> + /// <value>The play session identifier.</value> + public string PlaySessionId { get; set; } } }
\ No newline at end of file |
