BotSharp/BotSharp.Core/Engines/RasaOptions.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -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; }
}
}