BotSharp/BotSharp.Core/Engines/INlpProvider.cs
2018-06-13 17:17:35 -05:00

15 lines
268 B
C#

using Microsoft.Extensions.Configuration;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public interface INlpProvider
{
IConfiguration Configuration { get; set; }
bool Load();
}
}