aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-09-07 21:55:17 +0000
committerGitHub <noreply@github.com>2020-09-07 21:55:17 +0000
commit69d453e9000b988e937edac3bc3c1fb83f72c746 (patch)
treeff56134df5f96d4860fdfef3596279ae7d86a2a3 /MediaBrowser.Model/System
parent386ffd1b65ea3ea6d1ba63c1818ee99e90a4e8e6 (diff)
parenta2e90170da52c8cde92a2e813dbaf930c6697dc2 (diff)
Merge pull request #4057 from crobibero/startup-complete
Add flag for startup completed
Diffstat (limited to 'MediaBrowser.Model/System')
-rw-r--r--MediaBrowser.Model/System/PublicSystemInfo.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/PublicSystemInfo.cs b/MediaBrowser.Model/System/PublicSystemInfo.cs
index b6196a43fc..d2f7556a51 100644
--- a/MediaBrowser.Model/System/PublicSystemInfo.cs
+++ b/MediaBrowser.Model/System/PublicSystemInfo.cs
@@ -24,7 +24,7 @@ namespace MediaBrowser.Model.System
public string Version { get; set; }
/// <summary>
- /// The product name. This is the AssemblyProduct name.
+ /// Gets or sets the product name. This is the AssemblyProduct name.
/// </summary>
public string ProductName { get; set; }
@@ -39,5 +39,11 @@ namespace MediaBrowser.Model.System
/// </summary>
/// <value>The id.</value>
public string Id { get; set; }
+
+ /// <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; }
}
}