added live tv settings page

This commit is contained in:
Luke Pulverenti
2014-01-12 11:55:38 -05:00
parent 109e3b4966
commit edd19f6c45
5 changed files with 45 additions and 8 deletions

View File

@@ -223,7 +223,10 @@ namespace MediaBrowser.Model.Configuration
public string TranscodingTempPath { get; set; }
public bool EnableAutomaticRestart { get; set; }
public LiveTvOptions LiveTvOptions { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@@ -287,6 +290,8 @@ namespace MediaBrowser.Model.Configuration
{
MaxBackdrops = 1
};
LiveTvOptions = new LiveTvOptions();
}
}
@@ -303,4 +308,9 @@ namespace MediaBrowser.Model.Configuration
HighQuality,
MaxQuality
}
public class LiveTvOptions
{
public int? GuideDays { get; set; }
}
}