jellyfin/MediaBrowser.Controller/Channels/ChannelItemResult.cs

20 lines
401 B
C#
Raw Normal View History

2021-08-15 11:20:07 -04:00
#pragma warning disable CS1591
2021-08-15 11:20:07 -04:00
using System;
using System.Collections.Generic;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Channels
{
public class ChannelItemResult
{
public ChannelItemResult()
{
2021-08-15 11:20:07 -04:00
Items = Array.Empty<ChannelItemInfo>();
2018-12-27 18:27:57 -05:00
}
2021-08-15 11:20:07 -04:00
public IReadOnlyList<ChannelItemInfo> Items { get; set; }
public int? TotalRecordCount { get; set; }
2018-12-27 18:27:57 -05:00
}
}