ChannelQuery.cs 535 B

123456789101112131415161718192021
  1. 
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. /// <summary>
  5. /// Class ChannelQuery.
  6. /// </summary>
  7. public class ChannelQuery
  8. {
  9. /// <summary>
  10. /// Gets or sets the type of the channel.
  11. /// </summary>
  12. /// <value>The type of the channel.</value>
  13. public ChannelType? ChannelType { get; set; }
  14. /// <summary>
  15. /// Gets or sets the user identifier.
  16. /// </summary>
  17. /// <value>The user identifier.</value>
  18. public string UserId { get; set; }
  19. }
  20. }