aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/PlaybackStopEventArgs.cs
blob: f0d77ba2d47380f8b6c05da7355c4b128666950d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma warning disable CS1591

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; }
    }
}