2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Sender.WhatsApp;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public static class WhatsAppSettingNames
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Default = "App.Sender.WhatsApp.";
|
|
|
|
|
|
public const string Url = Default + "Url"; // https://graph.facebook.com/v21.0/
|
|
|
|
|
|
public const string PhoneNumberId = Default + "PhoneNumberId";
|
|
|
|
|
|
public const string TemplateName = Default + "TemplateName"; // WhatsApp message template name
|
|
|
|
|
|
public const string Token = Default + "Token";
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|