BotSharp/BotSharp.Core/Engines/Rasa/RasaOptions.cs
2018-06-14 07:01:17 -05:00

16 lines
390 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class RasaOptions
{
public string HostUrl { get; set; }
public String[] Assembles { get; set; }
public string ContentRootPath { get; set; }
public String DbName { get; set; }
public String DbConnectionString { get; set; }
}
}