BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Settings/TwilioSetting.cs
2023-12-06 16:55:55 -06:00

13 lines
372 B
C#

namespace BotSharp.Plugin.Twilio.Settings;
public class TwilioSetting
{
public string PhoneNumber { get; set; }
public string AccountSID { get; set; }
public string AuthToken { get; set; }
public string AppSID { get; set; }
public string ApiKeySID { get; set; }
public string ApiSecret { get; set; }
public string CallbackHost { get; set; }
}