aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-09-05 09:20:58 -0600
committercrobibero <cody@robibe.ro>2020-09-05 09:20:58 -0600
commit9a74ace84bed207952c0b34a820dcb231bb8b805 (patch)
tree1c2eb0fb770680606ad7f2a0285561e2f073c2a6 /MediaBrowser.Model/System
parent6d154041b9e456ab97e1066f525e4d9732fb672a (diff)
Add flag for startup completed
Diffstat (limited to 'MediaBrowser.Model/System')
-rw-r--r--MediaBrowser.Model/System/PublicSystemInfo.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/PublicSystemInfo.cs b/MediaBrowser.Model/System/PublicSystemInfo.cs
index b6196a43f..012001aea 100644
--- a/MediaBrowser.Model/System/PublicSystemInfo.cs
+++ b/MediaBrowser.Model/System/PublicSystemInfo.cs
@@ -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 startup is completed.
+ /// </summary>
+ /// <value>The startup completion status.</value>
+ public bool StartupCompleted { get; set; }
}
}