BotSharp/BotSharp.Platform.Rasa/Models/RasaRequestModel.cs

18 lines
341 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
public class RasaRequestModel
{
[JsonProperty("q")]
public string Text { get; set; }
public string Project { get; set; }
public string Model { get; set; }
}
}