11 lines
437 B
C#
11 lines
437 B
C#
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;
|
|
}
|