BotSharp/BotSharp.Core/Adapters/Dialogflow/DialogflowIntentExpression.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -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; }
}
}