PlaybackStopEventArgs.cs 422 B

12345678910111213
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Controller.Library
  3. {
  4. public class PlaybackStopEventArgs : PlaybackProgressEventArgs
  5. {
  6. /// <summary>
  7. /// Gets or sets a value indicating whether [played to completion].
  8. /// </summary>
  9. /// <value><c>true</c> if [played to completion]; otherwise, <c>false</c>.</value>
  10. public bool PlayedToCompletion { get; set; }
  11. }
  12. }