10 lines
317 B
C#
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; }
|
|
}
|