15 lines
338 B
C#
15 lines
338 B
C#
|
|
using BotSharp.Core.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.Core.Engines
|
|||
|
|
{
|
|||
|
|
public class TrainingCorpus
|
|||
|
|
{
|
|||
|
|
public List<TrainingIntentExpression<TrainingIntentExpressionPart>> UserSays { get; set; }
|
|||
|
|
|
|||
|
|
public List<TrainingEntity> Entities { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|