aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemResult.cs
blob: 7a0addd9f9034c5ad0a86863e01264baaf7ae79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#nullable disable

#pragma warning disable CA1002, CA2227, CS1591

using System.Collections.Generic;

namespace MediaBrowser.Controller.Channels
{
    public class ChannelItemResult
    {
        public ChannelItemResult()
        {
            Items = new List<ChannelItemInfo>();
        }

        public List<ChannelItemInfo> Items { get; set; }

        public int? TotalRecordCount { get; set; }
    }
}