BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentExpressionPart.cs
2018-06-14 07:01:17 -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; }
}
}