BotSharp/BotSharp.Core/NLUSetting.cs

18 lines
315 B
C#
Raw Normal View History

using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core
{
public class NLUSetting
{
public string BotEngine { get; set; }
public string AgentStorage { get; set; }
}
}