2018-10-01 13:36:39 +00:00
|
|
|
|
using System;
|
2018-07-15 12:31:52 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-10-01 13:36:39 +00:00
|
|
|
|
namespace BotSharp.Platform.Models
|
2018-07-15 12:31:52 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class TrainingIntentExpression<TPart> where TPart : TrainingIntentExpressionPart
|
|
|
|
|
|
{
|
|
|
|
|
|
public String Text { get; set; }
|
|
|
|
|
|
public String Intent { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public String ContextHash { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<TPart> Entities { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|