diff options
| author | Niels van Velzen <git@ndat.nl> | 2020-10-11 17:01:33 +0200 |
|---|---|---|
| committer | Niels van Velzen <git@ndat.nl> | 2020-10-11 17:01:33 +0200 |
| commit | 7072b4d92633c4728bc7ee55684d43d585e140c9 (patch) | |
| tree | 71dfac1548befe4f46252abc2b9e32f13012152d /MediaBrowser.Model/System | |
| parent | 2375c35c4a966a469dd97f33deb57b342498b905 (diff) | |
Make StartupWizardCompleted nullable in PublicSystemInfo
Diffstat (limited to 'MediaBrowser.Model/System')
| -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; } } } |
