BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentExpression.cs
2018-06-14 07:01:17 -05:00

14 lines
333 B
C#

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