add tv genre configuration options

This commit is contained in:
Luke Pulverenti
2016-06-03 15:32:10 -04:00
parent 53afb1e1e5
commit 3aea4f7ffc
5 changed files with 22 additions and 5 deletions

View File

@@ -73,9 +73,15 @@ namespace MediaBrowser.Model.LiveTv
public string[] EnabledTuners { get; set; }
public bool EnableAllTuners { get; set; }
public string[] NewsGenres { get; set; }
public string[] SportsGenres { get; set; }
public string[] KidsGenres { get; set; }
public ListingsProviderInfo()
{
NewsGenres = new string[] { "news" };
SportsGenres = new string[] { "sports", "basketball", "baseball", "football" };
KidsGenres = new string[] { "kids", "family", "children" };
EnabledTuners = new string[] { };
EnableAllTuners = true;
}