You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Helpers/NotificationAgent.cs

17 lines
309 B

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