13 lines
698 B
C#
13 lines
698 B
C#
namespace Sozsoft.Notifications.Enums;
|
||
|
||
public static class NotificationChannels
|
||
{
|
||
public const string Sms = "Sms"; //SMS (ABP Sms + Posta Guvercini)
|
||
public const string Mail = "Mail"; //Email (ABP Emailing + Amazon SES)
|
||
public const string Rocket = "Rocket"; //Rocket.Chat (HTTP API)
|
||
public const string Desktop = "Desktop";
|
||
public const string UiActivity = "UiActivity"; //UI Activity (ABP UI Activity)
|
||
public const string UiToast = "UiToast"; //UI Toast (ABP UI Toast) Ayarlar/Sistem/Bildirimler/Chrome açık olması gerekiyor.
|
||
public const string WhatsApp = "WhatsApp"; //WhatsApp (HTTP API, template-based)
|
||
// public const string Telegram = "Telegram";
|
||
}
|