BotSharp/BotSharp.Platform.Dialogflow/Models/DialogflowIntentResponseParameterPrompt.cs
2018-10-28 21:16:55 -05:00

14 lines
274 B
C#

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