BotSharp/BotSharp.RestApi/Rasa/RasaConfigModel.cs
2018-08-14 09:23:15 -05:00

14 lines
237 B
C#

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; }
}
}