jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

20 lines
401 B
C#
Raw Normal View History

2021-08-15 17:20:07 +02:00
#pragma warning disable CS1591
2021-08-15 17:20:07 +02:00
using System;
using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public ChannelItemResult()
{
2021-08-15 17:20:07 +02:00
Items = Array.Empty<ChannelItemInfo>();
2018-12-28 00:27:57 +01:00
}
2021-08-15 17:20:07 +02:00
public IReadOnlyList<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
2018-12-28 00:27:57 +01:00
}
}