BotSharp/Bot.Rasa/Adapters/Dialogflow/DialogflowIntentExpression.cs

14 lines
328 B
C#
Raw Normal View History

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