Make StartupWizardCompleted nullable in PublicSystemInfo

This commit is contained in:
Niels van Velzen 2020-10-11 17:01:33 +02:00
parent 2375c35c4a
commit 7072b4d926
1 changed files with 5 additions and 2 deletions

View File

@ -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; }
}
}