aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs
blob: cb02da635283634d9ce3c7e2e60235f679298e19 (plain)
1
2
3
4
5
6
7
8
9
10
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; }
    }
}