Mark CanSelfRestart as Obsolete

This commit is contained in:
Patrick Barron
2023-01-17 14:41:10 -05:00
parent 577d396649
commit c59f2a3c46
2 changed files with 3 additions and 3 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; }