diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-12 14:51:34 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-12 14:51:34 -0500 |
| commit | 8a82d324dd6a8099f56f56b86e5dbc03ea090149 (patch) | |
| tree | 09106105710782aaeb6fe25d80064da206a9f177 | |
| parent | 0d5903f21583afbeed279699d72b512427aa33a9 (diff) | |
fix merge conflicts
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index e3e8c7be2..ffc65cb66 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -43,7 +43,7 @@ namespace MediaBrowser.Model.System /// </summary> /// <value><c>true</c> if [supports library monitor]; otherwise, <c>false</c>.</value> public bool SupportsLibraryMonitor { get; set; } - + /// <summary> /// Gets or sets a value indicating whether this instance is network deployed. /// </summary> @@ -87,6 +87,12 @@ namespace MediaBrowser.Model.System public List<string> FailedPluginAssemblies { get; set; } /// <summary> + /// Gets or sets the image enhancers. + /// </summary> + /// <value>The image enhancers.</value> + public List<string> ImageEnhancers { get; set; } + + /// <summary> /// Gets or sets the program data path. /// </summary> /// <value>The program data path.</value> @@ -162,6 +168,7 @@ namespace MediaBrowser.Model.System CompletedInstallations = new List<InstallationInfo>(); FailedPluginAssemblies = new List<string>(); + ImageEnhancers = new List<string>(); } } } |
