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
|
|||
|
}
|
|||
|
}
|