14 lines
264 B
C#
14 lines
264 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Bot.Rasa.Models
|
|
{
|
|
public class RasaTrainingData
|
|
{
|
|
[JsonProperty("common_examples")]
|
|
public List<UserSay> UserSays { get; set; }
|
|
}
|
|
}
|