Ombi/src/Ombi.Helpers/NotificationAgent.cs

16 lines
No EOL
287 B
C#

namespace Ombi.Helpers
{
public enum NotificationAgent
{
Email = 0,
Discord = 1,
Pushbullet = 2,
Pushover = 3,
Telegram = 4,
Slack = 5,
Mattermost = 6,
Mobile = 7,
Gotify = 8,
Webhook = 9,
}
}