feat(domain): add domain entities and enums

This commit is contained in:
2024-12-16 12:00:00 -05:00
parent 49ec9cd997
commit 9357cbe026
14 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace IncidentOps.Domain.Enums;
public enum IncidentStatus
{
Triggered,
Acknowledged,
Mitigated,
Resolved
}