BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Settings/TwilioSetting.cs
2024-09-06 10:16:18 -05:00

15 lines
459 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; }
public string AgentId { get; set; }
public string CsrAgentNumber { get; set; }
}