using System.Text.Json.Serialization; namespace BotSharp.Plugin.Twilio.OutboundPhoneCallHandler.LlmContexts; public class ForwardPhoneCallArgs { [JsonPropertyName("phone_number")] public string PhoneNumber { get; set; } = null!; [JsonPropertyName("transition_message")] public string TransitionMessage { get; set; } = null!; }