mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
12 lines
218 B
C#
12 lines
218 B
C#
namespace NzbDrone.Core.Notifications.NotifyMyAndroid
|
|
{
|
|
public enum NotifyMyAndroidPriority
|
|
{
|
|
VeryLow = -2,
|
|
Moderate = -1,
|
|
Normal = 0,
|
|
High = 1,
|
|
Emergency = 2
|
|
}
|
|
}
|