Initial Commit
This commit is contained in:
10
PatchProbe.Shared/Models/PendingRebootInfo.cs
Normal file
10
PatchProbe.Shared/Models/PendingRebootInfo.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PatchProbe.Shared.Models;
|
||||
|
||||
public sealed class PendingRebootInfo
|
||||
{
|
||||
public bool CbsRebootPending { get; init; }
|
||||
public bool WindowsUpdateRebootRequired { get; init; }
|
||||
public bool SessionManagerRebootRequired { get; init; }
|
||||
public bool ComputerRenameRequired { get; init; }
|
||||
public bool AnyPending => CbsRebootPending || WindowsUpdateRebootRequired || SessionManagerRebootRequired || ComputerRenameRequired;
|
||||
}
|
||||
Reference in New Issue
Block a user