21 lines
535 B
C#
21 lines
535 B
C#
using BotSharp.Platform.Models;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Platform.Rasa.Models
|
|
{
|
|
public class AgentModel : AgentBase
|
|
{
|
|
[JsonProperty("common_examples")]
|
|
public List<RasaIntentExpression> Intents { get; set; }
|
|
|
|
[JsonProperty("entity_synonyms")]
|
|
public List<RasaTrainingEntity> Entities { get; set; }
|
|
|
|
[JsonProperty("regex_features")]
|
|
public List<RasaTrainingRegex> Regex { get; set; }
|
|
}
|
|
}
|