stubbed out channel mappings

This commit is contained in:
Luke Pulverenti
2016-06-06 14:22:42 -04:00
parent faefbf36cc
commit 83105f5aae
3 changed files with 25 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.LiveTv
{
@@ -77,6 +78,7 @@ namespace MediaBrowser.Model.LiveTv
public string[] SportsCategories { get; set; }
public string[] KidsCategories { get; set; }
public string[] MovieCategories { get; set; }
public NameValuePair[] ChannelMappings { get; set; }
public ListingsProviderInfo()
{
@@ -86,6 +88,7 @@ namespace MediaBrowser.Model.LiveTv
MovieCategories = new string[] { "movie" };
EnabledTuners = new string[] { };
EnableAllTuners = true;
ChannelMappings = new NameValuePair[] {};
}
}
}