BotSharp/BotSharp.Core/Engines/Dialogflow/AIResponseCustomPayload.cs
2018-06-14 07:01:17 -05:00

14 lines
266 B
C#

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