BotSharp/BotSharp.RestApi/Rasa/RasaUiMiddlewareRequestDataModel.cs

14 lines
311 B
C#
Raw Normal View History

2018-08-22 15:45:50 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Rasa
{
public class RasaUiMiddlewareRequestDataModel
{
public string Project { get; set; }
public string Agent { get; set; }
public RasaTrainRequestModel Data { get; set; }
}
}