BotSharp/BotSharp.Platform.Articulate/Models/IntentExampleModel.cs

21 lines
504 B
C#
Raw Normal View History

2019-03-16 16:34:32 +00:00
using BotSharp.Core.Engines;
using BotSharp.Platform.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class IntentExampleModel
{
public string UserSays { get; set; }
public List<ArticulateTrainingIntentExpressionPart> Entities { get; set; }
}
public class ArticulateTrainingIntentExpressionPart : TrainingIntentExpressionPart
{
public string EntityId { get; set; }
}
}