namespace StellaOps.Router.Common.Models; /// /// Represents a claim requirement for endpoint authorization. /// public sealed record ClaimRequirement { /// /// Gets the claim type that must be present. /// public required string Type { get; init; } /// /// Gets the optional claim value that must match. /// public string? Value { get; init; } }