2021-08-15 08:20:07 -07:00
|
|
|
#pragma warning disable CS1591
|
2020-08-22 12:56:24 -07:00
|
|
|
|
2021-08-15 08:20:07 -07:00
|
|
|
using System;
|
2019-01-13 13:01:16 -07:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
{
|
|
|
|
public class ChannelItemResult
|
|
|
|
{
|
|
|
|
public ChannelItemResult()
|
|
|
|
{
|
2021-08-15 08:20:07 -07:00
|
|
|
Items = Array.Empty<ChannelItemInfo>();
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
2021-05-11 04:55:46 -07:00
|
|
|
|
2021-08-15 08:20:07 -07:00
|
|
|
public IReadOnlyList<ChannelItemInfo> Items { get; set; }
|
2021-05-11 04:55:46 -07:00
|
|
|
|
|
|
|
public int? TotalRecordCount { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
2019-01-13 12:30:58 -07:00
|
|
|
}
|