jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

21 lines
394 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System.Collections.Generic;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public List<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
public ChannelItemResult()
{
Items = new List<ChannelItemInfo>();
}
}
}