2018-07-15 12:31:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
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 TrainingEntity
|
|
|
|
|
|
{
|
2018-10-01 13:36:39 +00:00
|
|
|
|
public virtual String Entity { get; set; }
|
2018-07-15 12:31:52 +00:00
|
|
|
|
|
2018-10-01 17:15:17 +00:00
|
|
|
|
public List<TrainingEntitySynonym> Values { get; set; }
|
2018-07-15 12:31:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|