mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-19 10:54:05 +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
|
||
|
}
|
||
|
}
|