From 2e358a5968375b952c7dab02730977f9952bd7d4 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 20 Apr 2013 21:17:59 -0400 Subject: default values for model classes --- MediaBrowser.Model/System/SystemInfo.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'MediaBrowser.Model/System') diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 6e2f26775e..7173425d15 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -60,5 +60,17 @@ namespace MediaBrowser.Model.System /// /// The id. public string Id { get; set; } + + /// + /// Initializes a new instance of the class. + /// + public SystemInfo() + { + InProgressInstallations = new InstallationInfo[] { }; + + CompletedInstallations = new InstallationInfo[] { }; + + FailedPluginAssemblies = new string[] { }; + } } } -- cgit v1.2.3