jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

21 lines
410 B
C#
Raw Normal View History

#nullable disable
2021-07-23 05:37:05 +02:00
#pragma warning disable CA1002, CA2227, CS1591
using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public ChannelItemResult()
{
Items = new List<ChannelItemInfo>();
}
public List<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
2018-12-28 00:27:57 +01:00
}
}