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

#pragma warning disable CS1591

namespace MediaBrowser.Model.LiveTv;

public class TunerChannelMapping
{
    public string Name { get; set; }

    public string ProviderChannelName { get; set; }

    public string ProviderChannelId { get; set; }

    public string Id { get; set; }
}