11 lines
366 B
C#
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; }
|
|
}
|