Initial Commit
This commit is contained in:
14
PatchProbe.Shared/Models/PatchProbePayload.cs
Normal file
14
PatchProbe.Shared/Models/PatchProbePayload.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace PatchProbe.Shared.Models;
|
||||
|
||||
public sealed class PatchProbePayload
|
||||
{
|
||||
public CollectorMeta Collector { get; init; } = new();
|
||||
public DeviceInfo? Device { get; init; }
|
||||
public OsInfo? Os { get; init; }
|
||||
public PendingRebootInfo? PendingReboot { get; init; }
|
||||
public WindowsUpdateInfo? WindowsUpdate { get; init; }
|
||||
public List<InstalledHotfix> InstalledHotfixes { get; init; } = [];
|
||||
public List<CbsPackage> CbsPackages { get; init; } = [];
|
||||
public List<DriverInfo> Drivers { get; init; } = [];
|
||||
public List<UpdateEvent> RecentUpdateEvents { get; init; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user