BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentExpression.cs

14 lines
333 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.Adapters.Dialogflow
{
public class DialogflowIntentExpression
{
public String Id { get; set; }
public List<DialogflowIntentExpressionPart> Data { get; set; }
public Boolean IsTemplate { get; set; }
}
}