mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-28 23:16:32 -04:00
12 lines
189 B
C#
12 lines
189 B
C#
namespace NzbDrone.Core.Notifications.Join
|
|
{
|
|
public enum JoinPriority
|
|
{
|
|
Silent = -2,
|
|
Quiet = -1,
|
|
Normal = 0,
|
|
High = 1,
|
|
Emergency = 2
|
|
}
|
|
}
|