BotSharp/BotSharp.Platform.Rasa/Models/RasaOptions.cs
2018-11-19 09:20:59 -06:00

16 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
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; }
}
}