jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

16 lines
345 B
C#
Raw Normal View History

2014-06-06 10:14:02 -07:00
using System.Collections.Generic;
2014-05-11 16:02:28 -07: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>();
}
2014-05-11 16:02:28 -07:00
}
}