ChannelItemResult.cs 240 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Channels
  3. {
  4. public class ChannelItemResult
  5. {
  6. public List<ChannelItemInfo> Items { get; set; }
  7. public int? TotalRecordCount { get; set; }
  8. }
  9. }