BotSharp/BotSharp.RestApi/Rasa/RasaUiMiddlewareRequestModel.cs

22 lines
474 B
C#
Raw Normal View History

2018-08-22 15:45:50 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Rasa
{
public class RasaUiMiddlewareRequestModel
{
[JsonProperty("ip_address")]
public string IP { get; set; }
public string Query { get; set; }
[JsonProperty("event_type")]
public string EventType { get; set; }
/*[JsonProperty("event_data")]
public T EventData { get; set; }*/
}
}