2019-01-13 20:01:16 +00:00
|
|
|
namespace MediaBrowser.Controller.Library
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
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; }
|
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|