BotSharp/Platform.Dialogflow/Models/AIResponseCustomPayload.cs

14 lines
284 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace Platform.Dialogflow.Models
{
public class AIResponseCustomPayload : AIResponseMessageBase
{
public string Task { get; set; }
2018-06-18 14:15:54 +00:00
public List<String> Parameters { get; set; }
}
}