Merge pull request #9100 from barronpm/refactor-startup

This commit is contained in:
Bond-009
2023-01-17 21:11:32 +01:00
committed by GitHub
31 changed files with 537 additions and 486 deletions

View File

@@ -79,8 +79,9 @@ namespace MediaBrowser.Model.System
/// <summary>
/// Gets or sets a value indicating whether this instance can self restart.
/// </summary>
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
public bool CanSelfRestart { get; set; }
/// <value><c>true</c>.</value>
[Obsolete("This is always true")]
public bool CanSelfRestart { get; set; } = true;
public bool CanLaunchWebBrowser { get; set; }