request/src/request.validation/Severity.cs

25 lines
360 B
C#
Raw Normal View History

2026-05-16 09:49:04 +02:00
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Request.Validation;
/// <summary>
/// Specifies the severity of a rule.
/// </summary>
public enum Severity
{
/// <summary>
/// Error
/// </summary>
Error,
/// <summary>
/// Warning
/// </summary>
Warning,
/// <summary>
/// Info
/// </summary>
Info,
}