diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-20 21:17:59 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-20 21:17:59 -0400 |
| commit | 2e358a5968375b952c7dab02730977f9952bd7d4 (patch) | |
| tree | c19956da16f65753a2b9c50890c339f702c4d99a /MediaBrowser.Model/System | |
| parent | 19d21a246d9304f824674df3138b30a5b8e51e8c (diff) | |
default values for model classes
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 6e2f26775..7173425d1 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -60,5 +60,17 @@ namespace MediaBrowser.Model.System /// </summary> /// <value>The id.</value> public string Id { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="SystemInfo"/> class. + /// </summary> + public SystemInfo() + { + InProgressInstallations = new InstallationInfo[] { }; + + CompletedInstallations = new InstallationInfo[] { }; + + FailedPluginAssemblies = new string[] { }; + } } } |
