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

10 lines
266 B
C#

namespace PatchProbe.Shared.Models;
public sealed class InstalledHotfix
{
public string? HotFixId { get; init; }
public string? Description { get; init; }
public string? InstalledBy { get; init; }
public DateTimeOffset? InstalledOn { get; init; }
}