diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-20 14:32:55 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-20 14:32:55 -0400 |
| commit | 20b990dc9a01f00e561181ad48ae73d62bcb2427 (patch) | |
| tree | a65a8fc5bafdd01eaf40a25517219fedec09774a /MediaBrowser.Model/LiveTv | |
| parent | 3178896004540c4a5884b9235a67ffbe3f58af0b (diff) | |
start pulling in EmbyTV
Diffstat (limited to 'MediaBrowser.Model/LiveTv')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/LiveTvOptions.cs | 13 |
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 |
