1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-28 23:16:32 -04:00
Files
Sonarr/src/NzbDrone.Core/Notifications/Join/JoinPriority.cs
T
2018-11-10 14:51:14 -08:00

12 lines
189 B
C#

namespace NzbDrone.Core.Notifications.Join
{
public enum JoinPriority
{
Silent = -2,
Quiet = -1,
Normal = 0,
High = 1,
Emergency = 2
}
}