NadekoBot/NadekoBot.Core/Services/IBotConfigProvider.cs

13 lines
275 B
C#
Raw Normal View History

using NadekoBot.Common;
using NadekoBot.Services.Database.Models;
namespace NadekoBot.Services
{
2017-07-25 16:31:30 +00:00
public interface IBotConfigProvider
{
BotConfig BotConfig { get; }
void Reload();
bool Edit(BotConfigEditType type, string newValue);
}
}