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