BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/InstructResult.cs

11 lines
325 B
C#
Raw Normal View History

2023-09-01 22:26:25 +00:00
namespace BotSharp.Abstraction.Instructs.Models;
2023-10-27 15:18:48 +00:00
public class InstructResult : ITrackableMessage
2023-09-01 22:26:25 +00:00
{
2023-11-03 15:46:29 +00:00
[JsonPropertyName("message_id")]
2023-10-27 15:18:48 +00:00
public string MessageId { get; set; }
2023-09-01 22:26:25 +00:00
public string Text { get; set; }
2024-10-11 20:07:41 +00:00
public object? Data { get; set; }
public Dictionary<string, string>? States { get; set; } = new();
2023-09-01 22:26:25 +00:00
}