Add flag for startup completed

This commit is contained in:
crobibero 2020-09-05 09:20:58 -06:00
parent 6d154041b9
commit 9a74ace84b
2 changed files with 8 additions and 1 deletions

View File

@ -1137,7 +1137,8 @@ namespace Emby.Server.Implementations
Id = SystemId,
OperatingSystem = OperatingSystem.Id.ToString(),
ServerName = FriendlyName,
LocalAddress = localAddress
LocalAddress = localAddress,
StartupCompleted = CoreStartupHasCompleted
};
}

View File

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