jellyfin-server/MediaBrowser.Controller/Channels/ChannelItemResult.cs
2014-06-06 13:14:02 -04:00

11 lines
240 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public List<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
}
}