aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs
blob: df3f55c26c12b0b0ef2e7b47fc7f5952dea5b645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MediaBrowser.Controller.LiveTv
{
    public class TunerChannelMapping
    {
        public string Name { get; set; }

        public string ProviderChannelName { get; set; }

        public string ProviderChannelId { get; set; }

        public string Id { get; set; }
    }
}