BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/InstructResult.cs
2025-09-30 15:03:06 -05:00

14 lines
419 B
C#

namespace BotSharp.Abstraction.Instructs.Models;
public class InstructResult : ITrackableMessage
{
[JsonPropertyName("message_id")]
public string MessageId { get; set; }
public string Text { get; set; } = string.Empty;
public object? Data { get; set; }
[JsonPropertyName("template")]
public string? Template { get; set; }
public Dictionary<string, string>? States { get; set; } = new();
}