BotSharp/Platform.Dialogflow/Models/AIResponseCustomPayload.cs
2018-10-02 20:44:11 -05:00

14 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Dialogflow.Models
{
public class AIResponseCustomPayload : AIResponseMessageBase
{
public string Task { get; set; }
public List<String> Parameters { get; set; }
}
}