Files
PatchProbe-Server/PatchProbe.Shared/Models/WindowsUpdateInfo.cs
2026-05-25 10:29:38 +08:00

10 lines
317 B
C#

namespace PatchProbe.Shared.Models;
public sealed class WindowsUpdateInfo
{
public List<ApplicableUpdate> ApplicableUpdates { get; init; } = [];
public List<UpdateHistoryEntry> History { get; init; } = [];
public WindowsUpdatePolicy? Policy { get; init; }
public string? SearchError { get; init; }
}