namespace StellaOps.Configuration;
///
/// Options controlling vulnerability explorer specific features exposed by Authority.
///
public sealed class AuthorityVulnerabilityExplorerOptions
{
///
/// Workflow-oriented configuration (anti-forgery tokens, CSRF enforcement helpers).
///
public AuthorityVulnWorkflowOptions Workflow { get; } = new();
///
/// Attachment handling configuration (signed access tokens).
///
public AuthorityVulnAttachmentOptions Attachments { get; } = new();
internal void Validate()
{
Workflow.Validate();
Attachments.Validate();
}
}