BotSharp/BotSharp.Platform.Rasa/Models/RasaOptions.cs

16 lines
398 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
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; }
}
}