namespace Core.Validation;
///
/// Severity level for validation warnings
///
public enum ValidationSeverity
{
///
/// Warning that should be addressed but doesn't prevent operation
///
Warning = 0,
///
/// Error that indicates a critical issue
///
Error = 1
}