BotSharp/BotSharp.Core/Models/RasaTrainingData.cs

14 lines
282 B
C#
Raw Normal View History

2017-12-18 13:31:15 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.Models
2017-12-18 13:31:15 +00:00
{
public class RasaTrainingData
{
[JsonProperty("common_examples")]
2018-03-28 22:08:49 +00:00
public List<RasaIntentExpression> UserSays { get; set; }
2017-12-18 13:31:15 +00:00
}
}