diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-10-26 13:19:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-26 13:19:13 +0000 |
| commit | 2c5609b333130b9f85b95b5406931198dcfe8583 (patch) | |
| tree | 05aa2dfc8c4456574d83d0f70639926cd7700e90 /MediaBrowser.Model/System/PublicSystemInfo.cs | |
| parent | 5b8349b4426b2eaa5ac812bf86a89eb3febd2c40 (diff) | |
| parent | a814d01f8c6edab930877031cd9e323f9ceda9d0 (diff) | |
Merge branch 'master' into fordiscussion
Diffstat (limited to 'MediaBrowser.Model/System/PublicSystemInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/System/PublicSystemInfo.cs | 7 |
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; } } } |
