Files
git.stella-ops.org/src/__Libraries/StellaOps.Evidence.Bundle/VexStatement.cs
2026-02-04 19:59:20 +02:00

12 lines
368 B
C#

namespace StellaOps.Evidence.Bundle;
public sealed class VexStatement
{
public required string VexStatus { get; init; }
public string? Justification { get; init; }
public string? ImpactStatement { get; init; }
public string? ActionStatement { get; init; }
public DateTimeOffset? Timestamp { get; init; }
public string? Source { get; init; }
}