2
0

ChannelItemResult.cs 375 B

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