BotSharp/BotSharp.Core/Engines/Rasa/RasaTrainingEntity.cs

18 lines
404 B
C#
Raw Normal View History

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
{
public sealed class RasaTrainingEntity : TrainingEntity
2018-04-02 22:42:11 +00:00
{
2018-06-18 22:15:32 +00:00
[JsonIgnore]
public override String EntityType { get; set; }
2018-04-02 22:42:11 +00:00
[JsonProperty("value")]
public override String EntityValue { get; set; }
2018-04-02 22:42:11 +00:00
}
}