aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemResult.cs
blob: ca7721991d9d5ae633934518d471618f373b77de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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; }
    }
}