BotSharp/BotSharp.Core/Engines/RasaOptions.cs

16 lines
390 B
C#
Raw Normal View History

2017-12-18 05:30:20 +00:00
using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.Engines
2017-12-18 05:30:20 +00:00
{
public class RasaOptions
{
public string HostUrl { get; set; }
2017-12-30 20:26:35 +00:00
public String[] Assembles { get; set; }
public string ContentRootPath { get; set; }
public String DbName { get; set; }
public String DbConnectionString { get; set; }
2017-12-18 05:30:20 +00:00
}
}