jellyfin/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs

11 lines
287 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.LiveTv
{
public class TunerChannelMapping
{
public string Name { get; set; }
public string ProviderChannelName { get; set; }
2017-02-05 00:32:16 +01:00
public string ProviderChannelId { get; set; }
public string Id { get; set; }
}
}