aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-11 19:02:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-11 19:02:28 -0400
commitb9b568de13d81f9db1a8502d50940475c1d79c72 (patch)
treea808b700095f876e437b95c432c0220e241f9fda /MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs
parent0d605b8672ece5129e833a2e9cde11a8aaf1b62a (diff)
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs')
-rw-r--r--MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs b/MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs
new file mode 100644
index 0000000000..b0f6799fc0
--- /dev/null
+++ b/MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs
@@ -0,0 +1,11 @@
+namespace MediaBrowser.Controller.Library
+{
+ public class PlaybackStopEventArgs : PlaybackProgressEventArgs
+ {
+ /// <summary>
+ /// Gets or sets a value indicating whether [played to completion].
+ /// </summary>
+ /// <value><c>true</c> if [played to completion]; otherwise, <c>false</c>.</value>
+ public bool PlayedToCompletion { get; set; }
+ }
+} \ No newline at end of file