BotSharp/Platform.Dialogflow/Models/DialogflowIntentResponseParameterPrompt.cs

14 lines
265 B
C#
Raw Normal View History

2018-06-07 05:53:38 +00:00
using System;
using System.Collections.Generic;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace Platform.Dialogflow.Models
2018-06-07 05:53:38 +00:00
{
public class DialogflowIntentResponseParameterPrompt
{
public string Lang { get; set; }
public string Value { get; set; }
}
}