BotSharp/BotSharp.Core/Abstractions/INlpProvider.cs
2018-06-14 07:01:17 -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();
}
}