aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs
blob: 1c1a4417dcad686e859466ee7a0a957310470d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#nullable disable

#pragma warning disable CS1591

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; }
    }
}