jellyfin/MediaBrowser.Controller/LiveTv/TunerChannelMapping.cs

11 lines
284 B
C#
Raw Normal View History

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