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

9 lines
206 B
C#
Raw Normal View History

2023-09-01 22:26:25 +00:00
namespace BotSharp.Abstraction.Instructs.Models;
public class InstructResult
{
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
}