PlaybackStartInfo.cs 542 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Session
  3. {
  4. /// <summary>
  5. /// Class PlaybackStartInfo.
  6. /// </summary>
  7. public class PlaybackStartInfo : PlaybackProgressInfo
  8. {
  9. public PlaybackStartInfo()
  10. {
  11. QueueableMediaTypes = new List<string>();
  12. }
  13. /// <summary>
  14. /// Gets or sets the queueable media types.
  15. /// </summary>
  16. /// <value>The queueable media types.</value>
  17. public List<string> QueueableMediaTypes { get; set; }
  18. }
  19. }