mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
17 lines
309 B
C#
17 lines
309 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,
|
|
WhatsApp = 10
|
|
}
|
|
} |