mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-26 20:16:33 +00:00
11 lines
240 B
C#
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; }
|
|
}
|
|
} |