jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs
2021-08-15 23:48:19 +02:00

20 lines
401 B
C#

#pragma warning disable CS1591
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public ChannelItemResult()
{
Items = Array.Empty<ChannelItemInfo>();
}
public IReadOnlyList<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
}
}