2021-05-07 00:39:20 +02:00
|
|
|
#nullable disable
|
|
|
|
|
|
2021-07-22 20:37:05 -07:00
|
|
|
#pragma warning disable CA1002, CA2227, CS1591
|
2020-08-22 21:56:24 +02:00
|
|
|
|
2019-01-13 21:01:16 +01:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 18:27:57 -05:00
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
|
{
|
|
|
|
|
public class ChannelItemResult
|
|
|
|
|
{
|
|
|
|
|
public ChannelItemResult()
|
|
|
|
|
{
|
|
|
|
|
Items = new List<ChannelItemInfo>();
|
|
|
|
|
}
|
2021-05-11 05:55:46 -06:00
|
|
|
|
|
|
|
|
public List<ChannelItemInfo> Items { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? TotalRecordCount { get; set; }
|
2018-12-27 18:27:57 -05:00
|
|
|
}
|
2019-01-13 20:30:58 +01:00
|
|
|
}
|