namespace MediaBrowser.Controller.Library
{
    public class PlaybackStopEventArgs : PlaybackProgressEventArgs
    {
        /// 
        /// Gets or sets a value indicating whether [played to completion].
        /// 
        /// true if [played to completion]; otherwise, false.
        public bool PlayedToCompletion { get; set; }
    }
}