14 lines
265 B
C#
14 lines
265 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Platform.Dialogflow.Models
|
|
{
|
|
public class DialogflowIntentResponseParameterPrompt
|
|
{
|
|
public string Lang { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
}
|