mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
19 lines
375 B
C#
19 lines
375 B
C#
#pragma warning disable CS1591
|
|
|
|
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>();
|
|
}
|
|
}
|
|
}
|