Add IListingsManager service

This commit is contained in:
Patrick Barron
2024-01-17 15:18:15 -05:00
parent 20f05f8103
commit 42b052a5a6
10 changed files with 590 additions and 530 deletions

View File

@@ -0,0 +1,16 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.LiveTv;
public class TunerChannelMapping
{
public string Name { get; set; }
public string ProviderChannelName { get; set; }
public string ProviderChannelId { get; set; }
public string Id { get; set; }
}