BotSharp/BotSharp.Platform.Rasa/Models/RasaConfigModel.cs

14 lines
245 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
public class RasaConfigModel
{
public string Config { get; set; }
public string Data { get; set; }
}
}