ChannelItemResult.cs 394 B

1234567891011121314151617181920
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Controller.Channels
  5. {
  6. public class ChannelItemResult
  7. {
  8. public ChannelItemResult()
  9. {
  10. Items = new List<ChannelItemInfo>();
  11. }
  12. public List<ChannelItemInfo> Items { get; set; }
  13. public int? TotalRecordCount { get; set; }
  14. }
  15. }