BotSharp/src/Plugins/BotSharp.Plugin.EmailHandler/LlmContexts/LlmContextIn.cs
2024-07-17 13:31:09 -05:00

19 lines
455 B
C#

using System.Text.Json.Serialization;
namespace BotSharp.Plugin.EmailHandler.LlmContexts;
public class LlmContextIn
{
[JsonPropertyName("to_address")]
public string? ToAddress { get; set; }
[JsonPropertyName("email_content")]
public string? Content { get; set; }
[JsonPropertyName("subject")]
public string? Subject { get; set; }
[JsonPropertyName("is_need_attachments")]
public bool IsNeedAttachemnts { get; set; }
}