13 lines
285 B
C#
13 lines
285 B
C#
using NadekoBot.Common;
|
|
using NadekoBot.Core.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Core.Services
|
|
{
|
|
public interface IBotConfigProvider
|
|
{
|
|
BotConfig BotConfig { get; }
|
|
void Reload();
|
|
bool Edit(BotConfigEditType type, string newValue);
|
|
}
|
|
}
|