PlaybackStopEventArgs.cs 390 B

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