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

10 lines
268 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-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; }
public object Data { get; set; }
2023-10-25 00:36:02 +00:00
public ConversationState States { get; set; }
2023-09-01 22:26:25 +00:00
}