aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model')
-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