update listing providers

This commit is contained in:
Luke Pulverenti
2016-02-24 14:06:26 -05:00
parent 10d4ad98d9
commit ae859fd56f
7 changed files with 45 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ namespace MediaBrowser.Model.LiveTv
public int PrePaddingSeconds { get; set; }
public int PostPaddingSeconds { get; set; }
public LiveTvOptions()
{
EnableMovieProviders = true;
@@ -48,5 +48,14 @@ namespace MediaBrowser.Model.LiveTv
public string ZipCode { get; set; }
public string Country { get; set; }
public string Path { get; set; }
public string[] EnabledTuners { get; set; }
public bool EnableAllTuners { get; set; }
public ListingsProviderInfo()
{
EnabledTuners = new string[] { };
EnableAllTuners = true;
}
}
}