mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Select type added for client schema
This commit is contained in:
parent
954ac925d0
commit
ca334ef664
10 changed files with 76 additions and 5 deletions
16
NzbDrone.Core/Notifications/Prowl/ProwlPriority.cs
Normal file
16
NzbDrone.Core/Notifications/Prowl/ProwlPriority.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Prowl
|
||||
{
|
||||
public enum ProwlPriority
|
||||
{
|
||||
VeryLow = -2,
|
||||
Low = -1,
|
||||
Normal = 0,
|
||||
High = 1,
|
||||
Emergency = 2
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue