using Discord.WebSocket; using System.Threading.Tasks; using Kerobot.Services.CommonFunctions; namespace Kerobot { partial class Kerobot { private CommonFunctionsService _svcCommonFunctions; public enum RemovalType { Ban, Kick } /// /// See /// and related methods. /// public Task BanOrKickAsync(RemovalType t, SocketGuild guild, string source, ulong target, int banPurgeDays, string logReason, string dmTemplate) => _svcCommonFunctions.BanOrKickAsync(t, guild, source, target, banPurgeDays, logReason, dmTemplate); } }