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