jellyfin/MediaBrowser.Model/LiveTv/TunerChannelMapping.cs

17 lines
303 B
C#
Raw Normal View History

2024-01-17 21:18:15 +01:00
#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; }
}