Ombi/src/Ombi.Helpers/NotificationAgent.cs
2020-01-11 00:41:55 +00:00

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,
WhatsApp = 9
}
}