17 lines
343 B
C#
17 lines
343 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class ChannelItemResult
|
|
{
|
|
public List<ChannelItemInfo> Items { get; set; }
|
|
|
|
public int? TotalRecordCount { get; set; }
|
|
|
|
public ChannelItemResult()
|
|
{
|
|
Items = new List<ChannelItemInfo>();
|
|
}
|
|
}
|
|
}
|