BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Models/CallerMessage.cs
2024-10-18 16:40:06 +08:00

18 lines
496 B
C#

namespace BotSharp.Plugin.Twilio.Models
{
public class CallerMessage
{
public string ConversationId { get; set; }
public int SeqNumber { get; set; }
public string Content { get; set; }
public string Digits { get; set; }
public string From { get; set; }
public Dictionary<string, string> States { get; set; } = new();
public override string ToString()
{
return $"{ConversationId}-{SeqNumber}";
}
}
}