public sealed record ValidationResult(
    string RuleName,
    ValidationSeverity Severity,
    bool IsSuccess,
    string Message
);