sonarr-repo-only/src/NzbDrone.Core/Notifications/Ntfy/NtfyPriority.cs

12 lines
177 B
C#

namespace NzbDrone.Core.Notifications.Ntfy
{
public enum NtfyPriority
{
Min = 1,
Low = 2,
Default = 3,
High = 4,
Max = 5
}
}