jellyfin/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs

14 lines
287 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.LiveTv
2018-12-27 23:27:57 +00:00
{
public class TunerChannelMapping
{
public string Name { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public string ProviderChannelName { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public string ProviderChannelId { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public string Id { get; set; }
}
}