12 lines
368 B
C#
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; }
|
|
}
|