| 12345678910111213141516171819 | #pragma warning disable CS1591using System;using System.Collections.Generic;namespace MediaBrowser.Controller.Channels{    public class ChannelItemResult    {        public ChannelItemResult()        {            Items = Array.Empty<ChannelItemInfo>();        }        public IReadOnlyList<ChannelItemInfo> Items { get; set; }        public int? TotalRecordCount { get; set; }    }}
 |