13 lines
173 B
C#
13 lines
173 B
C#
namespace StellaOps.AuditPack.Services;
|
|
|
|
/// <summary>
|
|
/// Severity of divergence.
|
|
/// </summary>
|
|
public enum DivergenceSeverity
|
|
{
|
|
None,
|
|
Low,
|
|
Medium,
|
|
High
|
|
}
|