BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentExpressionPart.cs

15 lines
352 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 DialogflowIntentExpressionPart
{
public String Text { get; set; }
public String Alias { get; set; }
public String Meta { get; set; }
public Boolean UserDefined { get; set; }
}
}