diff --git a/MediaBrowser.Model/System/PublicSystemInfo.cs b/MediaBrowser.Model/System/PublicSystemInfo.cs
index d2f7556a5..53030843a 100644
--- a/MediaBrowser.Model/System/PublicSystemInfo.cs
+++ b/MediaBrowser.Model/System/PublicSystemInfo.cs
@@ -43,7 +43,10 @@ namespace MediaBrowser.Model.System
///
/// Gets or sets a value indicating whether the startup wizard is completed.
///
- /// The startup completion status.
- public bool StartupWizardCompleted { get; set; }
+ ///
+ /// Nullable for OpenAPI specification only to retain backwards compatibility in apiclients.
+ ///
+ /// The startup completion status.]
+ public bool? StartupWizardCompleted { get; set; }
}
}