BotSharp/BotSharp.Core/Engines/Dialogflow/AIResponseCustomPayload.cs

14 lines
266 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.Models
{
public class AIResponseCustomPayload : AIResponseMessageBase
{
public string Task { get; set; }
public Object Body { get; set; }
}
}