aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-23 01:25:55 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-23 01:25:55 -0400
commit7300a475d1892c553bb0a3a5fc21cc32d09b4950 (patch)
tree3d412cb60d8bb71ec2bc0a414cfea80e44ca9b22 /MediaBrowser.Model/LiveTv
parentcf27ac47a8366ea1710908c4aa1093a6a85d7139 (diff)
update live tv setup
Diffstat (limited to 'MediaBrowser.Model/LiveTv')
-rw-r--r--MediaBrowser.Model/LiveTv/LiveTvOptions.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
index 2ca7397c1..c78fbe630 100644
--- a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
+++ b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
@@ -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; }
+ }
} \ No newline at end of file