BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentResponseParameterPrompt.cs

14 lines
272 B
C#
Raw Normal View History

2018-06-07 05:53:38 +00:00
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; }
}
}