elliebot/src/EllieBot/Modules/Administration/DangerousCommands/_common/ICleanupService.cs

7 lines
No EOL
195 B
C#

namespace EllieBot.Modules.Administration.DangerousCommands;
public interface ICleanupService
{
Task<KeepResult?> DeleteMissingGuildDataAsync();
Task<bool> KeepGuild(ulong guildId);
}