using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Channels { public class ChannelItemResult { public List Items { get; set; } public TimeSpan CacheLength { get; set; } public int? TotalRecordCount { get; set; } } }