BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentResponseParameterPrompt.cs
2018-06-14 07:01:17 -05:00

14 lines
272 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Adapters.Dialogflow
{
public class DialogflowIntentResponseParameterPrompt
{
public string Lang { get; set; }
public string Value { get; set; }
}
}