diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-10-14 15:06:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-14 15:06:56 -0400 |
| commit | 8ffa14e6d3436cd6533bf43241c356f803b06845 (patch) | |
| tree | 9d6b5b0331da919ba6d2b23d9b343ed264d29b22 | |
| parent | d54de29485cc622a64c17884b39c9bc65e33af29 (diff) | |
| parent | 7072b4d92633c4728bc7ee55684d43d585e140c9 (diff) | |
Merge pull request #4309 from nielsvanvelzen/publicsysteminfo-backward-compatible-openapi
Make StartupWizardCompleted nullable in PublicSystemInfo
| -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; } } } |
