11 lines
240 B
C#
11 lines
240 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class ChannelItemResult
|
|
{
|
|
public List<ChannelItemInfo> Items { get; set; }
|
|
|
|
public int? TotalRecordCount { get; set; }
|
|
}
|
|
} |