jellyfin/MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs

14 lines
422 B
C#
Raw Normal View History

#pragma warning disable CS1591
namespace MediaBrowser.Controller.Library
2018-12-27 18:27:57 -05: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; }
}
}