diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-12-05 02:57:33 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-12-05 02:57:33 +0200 |
| commit | 6145633410ecac8d9847dfb4272a5ee11325c65f (patch) | |
| tree | 56cb73a999f6805e37fa97d7c9a314e9342ea23f /Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs | |
| parent | 92de61904c6ae3f8455827944b4aa62c5582bbb5 (diff) | |
| download | Tango-6145633410ecac8d9847dfb4272a5ee11325c65f.tar.gz Tango-6145633410ecac8d9847dfb4272a5ee11325c65f.zip | |
Finished SMS.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs b/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs index e8240fd46..15c0637d6 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs +++ b/Software/Visual_Studio/Web/Tango.MachineService/MachineServiceConfig.cs @@ -26,9 +26,11 @@ namespace Tango.MachineService public static String SEND_GRID_API_KEY => ConfigurationManager.AppSettings[nameof(SEND_GRID_API_KEY)].ToString(); - public static bool TWILIO_ENABLE_SMS => bool.Parse(ConfigurationManager.AppSettings[nameof(TWILIO_ENABLE_SMS)].ToString()); public static String TWILIO_ACCOUNT_SID => ConfigurationManager.AppSettings[nameof(TWILIO_ACCOUNT_SID)].ToString(); public static String TWILIO_AUTH_TOKEN => ConfigurationManager.AppSettings[nameof(TWILIO_AUTH_TOKEN)].ToString(); + public static String TWILIO_MESSAGING_SERVICE_SID => ConfigurationManager.AppSettings[nameof(TWILIO_MESSAGING_SERVICE_SID)].ToString(); public static String TWILIO_FROM_NUMBER => ConfigurationManager.AppSettings[nameof(TWILIO_FROM_NUMBER)].ToString(); + public static bool TWILIO_ENABLE_SMS => bool.Parse(ConfigurationManager.AppSettings[nameof(TWILIO_ENABLE_SMS)].ToString()); + public static bool TWILIO_ENABLE_ALPHA_SENDER => bool.Parse(ConfigurationManager.AppSettings[nameof(TWILIO_ENABLE_ALPHA_SENDER)].ToString()); } }
\ No newline at end of file |
