#nullable disable namespace NadekoBot.Modules.Searches; public interface ITranslateService { public Task Translate(string source, string target, string text = null); Task ToggleAtl(ulong guildId, ulong channelId, bool autoDelete); IEnumerable GetLanguages(); Task RegisterUserAsync( ulong userId, ulong channelId, string from, string to); Task UnregisterUser(ulong channelId, ulong userId); }