10 lines
129 B
C#
10 lines
129 B
C#
namespace IncidentOps.Domain.Enums;
|
|
|
|
public enum IncidentStatus
|
|
{
|
|
Triggered,
|
|
Acknowledged,
|
|
Mitigated,
|
|
Resolved
|
|
}
|