BotSharp/BotSharp.RestApi/Rasa/RasaTrainRequestModel.cs

19 lines
390 B
C#
Raw Normal View History

using BotSharp.Core.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Rasa
{
public class RasaTrainRequestModel
{
public string Project { get; set; }
2018-08-23 04:24:13 +00:00
public string Model { get; set; }
[JsonProperty("rasa_nlu_data")]
public RasaTrainingData Corpus { get; set; }
}
}