InternalAllChannelMediaQuery.cs 890 B

123456789101112131415161718192021222324252627282930
  1. using MediaBrowser.Model.Channels;
  2. using MediaBrowser.Model.Entities;
  3. namespace MediaBrowser.Controller.Channels
  4. {
  5. public class InternalAllChannelMediaQuery
  6. {
  7. public string UserId { get; set; }
  8. /// <summary>
  9. /// Gets or sets the content types.
  10. /// </summary>
  11. /// <value>The content types.</value>
  12. public ChannelMediaContentType[] ContentTypes { get; set; }
  13. /// <summary>
  14. /// Gets or sets the extra types.
  15. /// </summary>
  16. /// <value>The extra types.</value>
  17. public ExtraType[] ExtraTypes { get; set; }
  18. public TrailerType[] TrailerTypes { get; set; }
  19. public InternalAllChannelMediaQuery()
  20. {
  21. ContentTypes = new ChannelMediaContentType[] { };
  22. ExtraTypes = new ExtraType[] { };
  23. TrailerTypes = new TrailerType[] { };
  24. }
  25. }
  26. }