BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Settings/TwilioSetting.cs
2025-01-23 10:57:21 -06:00

16 lines
511 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; }
public int MaxGatherAttempts { get; set; } = 4;
}