14 lines
344 B
C#
14 lines
344 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BotSharp.Plugin.Twilio.OutboundPhoneCallHandler.LlmContexts
|
|
{
|
|
public class LlmContextIn
|
|
{
|
|
[JsonPropertyName("phone_number")]
|
|
public string PhoneNumber { get; set; }
|
|
|
|
[JsonPropertyName("initial_message")]
|
|
public string InitialMessage { get; set; }
|
|
}
|
|
}
|