mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-30 16:03:46 +01:00
10 lines
295 B
C#
10 lines
295 B
C#
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public class TunerChannelMapping
|
|
{
|
|
public string Name { get; set; }
|
|
public string Number { get; set; }
|
|
public string ProviderChannelNumber { get; set; }
|
|
public string ProviderChannelName { get; set; }
|
|
}
|
|
}
|