aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-09-06 14:27:31 -0600
committercrobibero <cody@robibe.ro>2020-09-06 14:27:31 -0600
commit26c432b56489ec68c0cb708982c6939bf8e6e0e5 (patch)
treed3271043a22baf8a90a228e6e3ef1c5ac9353b8d /MediaBrowser.Model/System
parentdb9bcdcdc9318c9158249a669922bd464fe8b08e (diff)
Rename StartupCompleted to StartupWizardCompleted
Diffstat (limited to 'MediaBrowser.Model/System')
-rw-r--r--MediaBrowser.Model/System/PublicSystemInfo.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/System/PublicSystemInfo.cs b/MediaBrowser.Model/System/PublicSystemInfo.cs
index 012001aea..d2f7556a5 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; }
@@ -41,9 +41,9 @@ namespace MediaBrowser.Model.System
public string Id { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether startup is completed.
+ /// Gets or sets a value indicating whether the startup wizard is completed.
/// </summary>
/// <value>The startup completion status.</value>
- public bool StartupCompleted { get; set; }
+ public bool StartupWizardCompleted { get; set; }
}
}