jellyfin/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs

11 lines
295 B
C#
Raw Normal View History

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