BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Models/CallerMessage.cs

17 lines
453 B
C#
Raw Normal View History

2024-08-08 19:54:32 +00:00
namespace BotSharp.Plugin.Twilio.Models
{
public class CallerMessage
{
2024-08-14 21:44:47 +00:00
public string ConversationId { get; set; }
2024-08-08 19:54:32 +00:00
public int SeqNumber { get; set; }
public string Content { get; set; }
public string From { get; set; }
2024-08-14 21:44:47 +00:00
public Dictionary<string, string> States { get; set; } = new();
2024-08-08 19:54:32 +00:00
public override string ToString()
{
2024-08-14 21:44:47 +00:00
return $"{ConversationId}-{SeqNumber}";
2024-08-08 19:54:32 +00:00
}
}
}