Tranga/API/Schema/NotificationUrgency.cs
2024-12-16 20:14:28 +01:00

8 lines
110 B
C#

namespace API.Schema;
public enum NotificationUrgency : byte
{
Low = 1,
Normal = 3,
High = 5
}