2018-09-28 22:25:55 +00:00
|
|
|
|
using BotSharp.Core.Engines;
|
2018-10-01 13:36:39 +00:00
|
|
|
|
using BotSharp.Platform.Models;
|
2018-09-28 22:25:55 +00:00
|
|
|
|
using System;
|
2018-09-28 00:49:43 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-09-28 22:25:55 +00:00
|
|
|
|
namespace Platform.Articulate.Models
|
2018-09-28 00:49:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class IntentExampleModel
|
|
|
|
|
|
{
|
2018-09-30 21:52:33 +00:00
|
|
|
|
public string UserSays { get; set; }
|
2018-09-28 00:49:43 +00:00
|
|
|
|
|
|
|
|
|
|
public List<ArticulateTrainingIntentExpressionPart> Entities { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class ArticulateTrainingIntentExpressionPart : TrainingIntentExpressionPart
|
|
|
|
|
|
{
|
2018-09-29 18:18:34 +00:00
|
|
|
|
public string EntityId { get; set; }
|
2018-09-28 00:49:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|