BotSharp/BotSharp.Core/Adapters/Dialogflow/DialogflowIntentExpressionPart.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -05:00

15 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Adapters.Dialogflow
{
public class DialogflowIntentExpressionPart
{
public String Text { get; set; }
public String Alias { get; set; }
public String Meta { get; set; }
public Boolean UserDefined { get; set; }
}
}