BotSharp/BotSharp.Core/Adapters/Dialogflow/DialogflowIntentResponseParameter.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -05:00

17 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Adapters.Dialogflow
{
public class DialogflowIntentResponseParameter
{
public string Id { get; set; }
public bool Required { get; set; }
public string DataType { get; set; }
public string Name { get; set; }
public string Value { get; set; }
public bool IsList { get; set; }
}
}