aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/PublicSystemInfo.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-10-26 13:21:48 +0000
committerGitHub <noreply@github.com>2020-10-26 13:21:48 +0000
commit0b5ddc90ff8125b32e396b02a828b10b16a887c5 (patch)
treefc511d6b1be5268ac38a2dd4414bdf57fe49de50 /MediaBrowser.Model/System/PublicSystemInfo.cs
parent1ee1f9c8a7d6f7a32d77d14351df040d5f3349fc (diff)
parenta814d01f8c6edab930877031cd9e323f9ceda9d0 (diff)
Merge branch 'master' into NetworkPR2
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; }
}
}