BotSharp/Platform.Dialogflow/Models/DialogflowIntentExpressionPart.cs
2018-10-02 20:44:11 -05:00

16 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Dialogflow.Models
{
public class DialogflowIntentExpressionPart
{
public String Text { get; set; }
public String Alias { get; set; }
public String Meta { get; set; }
public int Start { get; set; }
public Boolean UserDefined { get; set; }
}
}