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 InstalledHotfixes { get; init; } = []; public List CbsPackages { get; init; } = []; public List Drivers { get; init; } = []; public List RecentUpdateEvents { get; init; } = []; }