BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Settings/TwilioSetting.cs

13 lines
372 B
C#
Raw Normal View History

2023-11-09 20:02:57 +00:00
namespace BotSharp.Plugin.Twilio.Settings;
public class TwilioSetting
{
public string PhoneNumber { get; set; }
public string AccountSID { get; set; }
public string AuthToken { get; set; }
2023-12-06 22:55:55 +00:00
public string AppSID { get; set; }
public string ApiKeySID { get; set; }
public string ApiSecret { get; set; }
2023-11-09 20:02:57 +00:00
public string CallbackHost { get; set; }
}