ChannelItemResult.cs 401 B

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