BotSharp/Platform.Dialogflow/Models/DialogflowIntentExpression.cs
2018-10-02 20:44:11 -05:00

14 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Dialogflow.Models
{
public class DialogflowIntentExpression
{
public String Id { get; set; }
public List<DialogflowIntentExpressionPart> Data { get; set; }
public Boolean IsTemplate { get; set; }
}
}