15 lines
459 B
C#
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; }
|
|
}
|