aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemResult.cs
blob: 6b20776629befbef620c70f9d43c46b3dd3ad26e (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 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; }
    }
}