jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

17 lines
346 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public List<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
public ChannelItemResult()
{
Items = new List<ChannelItemInfo>();
}
}
}