2018-07-15 12:31:52 +00:00
|
|
|
|
using BotSharp.Core.Engines;
|
|
|
|
|
|
using Newtonsoft.Json;
|
2018-04-02 22:42:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Adapters.Rasa
|
|
|
|
|
|
{
|
2018-08-14 22:21:09 +00:00
|
|
|
|
public sealed class RasaTrainingEntity : TrainingEntity
|
2018-04-02 22:42:11 +00:00
|
|
|
|
{
|
2018-06-18 22:15:32 +00:00
|
|
|
|
[JsonIgnore]
|
2018-07-15 12:31:52 +00:00
|
|
|
|
public override String EntityType { get; set; }
|
2018-04-02 22:42:11 +00:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("value")]
|
2018-07-15 12:31:52 +00:00
|
|
|
|
public override String EntityValue { get; set; }
|
2018-04-02 22:42:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|