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

11 lines
366 B
C#

namespace PatchProbe.Shared.Models;
public sealed class CollectorMeta
{
public string SchemaVersion { get; init; } = "0.1";
public string CollectorVersion { get; init; } = "1.0.0";
public DateTimeOffset CollectedAt { get; init; } = DateTimeOffset.UtcNow;
public string? MachineName { get; init; }
public bool RanAsAdministrator { get; init; }
}