Files
nadekobot/src/Nadeko.Bot.Common/IDiscordPermOverrideService.cs

7 lines
191 B
C#

#nullable disable
namespace Nadeko.Common;
public interface IDiscordPermOverrideService
{
bool TryGetOverrides(ulong guildId, string commandName, out Nadeko.Bot.Db.GuildPerm? perm);
}