2017-07-20 05:10:39 +02:00
|
|
|
|
using NadekoBot.Common;
|
2017-10-13 06:14:54 +02:00
|
|
|
|
using NadekoBot.Core.Services.Database.Models;
|
2017-07-20 05:10:39 +02:00
|
|
|
|
|
2017-10-13 06:14:54 +02:00
|
|
|
|
namespace NadekoBot.Core.Services
|
2017-07-20 05:10:39 +02:00
|
|
|
|
{
|
2017-07-25 18:31:30 +02:00
|
|
|
|
public interface IBotConfigProvider
|
2017-07-20 05:10:39 +02:00
|
|
|
|
{
|
|
|
|
|
BotConfig BotConfig { get; }
|
|
|
|
|
void Reload();
|
|
|
|
|
bool Edit(BotConfigEditType type, string newValue);
|
|
|
|
|
}
|
|
|
|
|
}
|