BotSharp/BotSharp.Platform.Dialogflow/Models/AIResponseCustomPayload.cs

14 lines
293 B
C#
Raw Normal View History

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