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
///
/// true if [supports library monitor]; otherwise, false.
public bool SupportsLibraryMonitor { get; set; }
-
+
///
/// Gets or sets a value indicating whether this instance is network deployed.
///
@@ -86,6 +86,12 @@ namespace MediaBrowser.Model.System
/// The failed assembly loads.
public List FailedPluginAssemblies { get; set; }
+ ///
+ /// Gets or sets the image enhancers.
+ ///
+ /// The image enhancers.
+ public List ImageEnhancers { get; set; }
+
///
/// Gets or sets the program data path.
///
@@ -162,6 +168,7 @@ namespace MediaBrowser.Model.System
CompletedInstallations = new List();
FailedPluginAssemblies = new List();
+ ImageEnhancers = new List();
}
}
}