2
0

ProgramQuery.cs 640 B

12345678910111213141516171819202122232425
  1. namespace MediaBrowser.Model.LiveTv
  2. {
  3. /// <summary>
  4. /// Class ProgramQuery.
  5. /// </summary>
  6. public class ProgramQuery
  7. {
  8. /// <summary>
  9. /// Gets or sets the name of the service.
  10. /// </summary>
  11. /// <value>The name of the service.</value>
  12. public string ServiceName { get; set; }
  13. /// <summary>
  14. /// Gets or sets the channel identifier.
  15. /// </summary>
  16. /// <value>The channel identifier.</value>
  17. public string[] ChannelIdList { get; set; }
  18. public ProgramQuery()
  19. {
  20. ChannelIdList = new string[] { };
  21. }
  22. }
  23. }