using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
///
/// The result of a channel item query.
///
public class ChannelItemResult
{
///
/// Initializes a new instance of the class.
///
public ChannelItemResult()
{
Items = Array.Empty();
}
///
/// Gets or sets the items.
///
public IReadOnlyList Items { get; set; }
///
/// Gets or sets the total record count.
///
public int? TotalRecordCount { get; set; }
}
}