mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
17 lines
303 B
C#
17 lines
303 B
C#
#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; }
|
|
}
|