Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelItemResult.cs

21 lines
410 B
C#
Raw Normal View History

#nullable disable
2021-07-22 20:37:05 -07:00
#pragma warning disable CA1002, CA2227, CS1591
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>();
}
public List<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
2018-12-27 18:27:57 -05:00
}
}