aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-20 14:32:55 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-20 14:32:55 -0400
commit20b990dc9a01f00e561181ad48ae73d62bcb2427 (patch)
treea65a8fc5bafdd01eaf40a25517219fedec09774a /MediaBrowser.Model/LiveTv
parent3178896004540c4a5884b9235a67ffbe3f58af0b (diff)
start pulling in EmbyTV
Diffstat (limited to 'MediaBrowser.Model/LiveTv')
-rw-r--r--MediaBrowser.Model/LiveTv/LiveTvOptions.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
index c6f6ed84ce..303b12af7d 100644
--- a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
+++ b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
@@ -1,13 +1,24 @@
-namespace MediaBrowser.Model.LiveTv
+using System.Collections.Generic;
+
+namespace MediaBrowser.Model.LiveTv
{
public class LiveTvOptions
{
public int? GuideDays { get; set; }
public bool EnableMovieProviders { get; set; }
+ public List<TunerHostInfo> TunerHosts { get; set; }
+ public string RecordingPath { get; set; }
public LiveTvOptions()
{
EnableMovieProviders = true;
+ TunerHosts = new List<TunerHostInfo>();
}
}
+
+ public class TunerHostInfo
+ {
+ public string Url { get; set; }
+ public string Type { get; set; }
+ }
} \ No newline at end of file