BotSharp/Bot.Rasa/Models/AIResponseCustomPayload.cs

14 lines
261 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.Models
{
public class AIResponseCustomPayload : AIResponseMessageBase
{
public string Task { get; set; }
public Object Body { get; set; }
}
}