update live tv setup

This commit is contained in:
Luke Pulverenti
2015-07-23 01:25:55 -04:00
parent cf27ac47a8
commit 7300a475d1
11 changed files with 923 additions and 109 deletions

View File

@@ -6,13 +6,16 @@ namespace MediaBrowser.Model.LiveTv
{
public int? GuideDays { get; set; }
public bool EnableMovieProviders { get; set; }
public List<TunerHostInfo> TunerHosts { get; set; }
public string RecordingPath { get; set; }
public List<TunerHostInfo> TunerHosts { get; set; }
public List<ListingsProviderInfo> ListingProviders { get; set; }
public LiveTvOptions()
{
EnableMovieProviders = true;
TunerHosts = new List<TunerHostInfo>();
ListingProviders = new List<ListingsProviderInfo>();
}
}
@@ -22,4 +25,13 @@ namespace MediaBrowser.Model.LiveTv
public string Url { get; set; }
public string Type { get; set; }
}
public class ListingsProviderInfo
{
public string ProviderName { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string ZipCode { get; set; }
public string ListingsId { get; set; }
}
}