aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemResult.cs
blob: f8888181189c5d01bde16362231250b4287fff36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;

namespace MediaBrowser.Controller.Channels
{
    public class ChannelItemResult
    {
        public List<ChannelItemInfo> Items { get; set; }

        public int? TotalRecordCount { get; set; }

        public ChannelItemResult()
        {
            Items = new List<ChannelItemInfo>();
        }
    }
}