BotSharp/BotSharp.Core/Adapters/Dialogflow/DialogflowIntentResponseParameterPrompt.cs
2018-06-07 00:53:38 -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; }
}
}