BotSharp/BotSharp.Core/Engines/Dialogflow/AIResponseCustomPayload.cs
2018-06-18 09:15:54 -05:00

14 lines
278 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 List<String> Parameters { get; set; }
}
}