BotSharp/BotSharp.RestApi/Rasa/RasaConfigModel.cs

14 lines
237 B
C#
Raw Normal View History

2018-08-14 14:23:15 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Rasa
{
public class RasaConfigModel
{
public string Config { get; set; }
public string Data { get; set; }
}
}