aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/PublicSystemInfo.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-10-26 13:19:13 +0000
committerGitHub <noreply@github.com>2020-10-26 13:19:13 +0000
commit2c5609b333130b9f85b95b5406931198dcfe8583 (patch)
tree05aa2dfc8c4456574d83d0f70639926cd7700e90 /MediaBrowser.Model/System/PublicSystemInfo.cs
parent5b8349b4426b2eaa5ac812bf86a89eb3febd2c40 (diff)
parenta814d01f8c6edab930877031cd9e323f9ceda9d0 (diff)
Merge branch 'master' into fordiscussion
Diffstat (limited to 'MediaBrowser.Model/System/PublicSystemInfo.cs')
-rw-r--r--MediaBrowser.Model/System/PublicSystemInfo.cs7
1 files changed, 5 insertions, 2 deletions
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
/// <summary>
/// Gets or sets a value indicating whether the startup wizard is completed.
/// </summary>
- /// <value>The startup completion status.</value>
- public bool StartupWizardCompleted { get; set; }
+ /// <remarks>
+ /// Nullable for OpenAPI specification only to retain backwards compatibility in apiclients.
+ /// </remarks>
+ /// <value>The startup completion status.</value>]
+ public bool? StartupWizardCompleted { get; set; }
}
}