BotSharp/Bot.Rasa/Consoles/RasaOptions.cs

16 lines
386 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-19 02:07:36 +00:00
namespace Bot.Rasa.Consoles
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
}
}