jellyfin/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs

11 lines
284 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.LiveTv
2018-12-28 00:27:57 +01:00
{
public class TunerChannelMapping
{
public string Name { get; set; }
public string ProviderChannelName { get; set; }
public string ProviderChannelId { get; set; }
public string Id { get; set; }
}
}