using Discord; using Discord.Commands; using Geekbot.net.Lib.Localization; namespace Geekbot.net.Lib.Context { public interface IGeekbotContext : ICommandContext { /// /// Gets the who executed the command. /// IGuildUser GuildUser { get; } /// /// Gets the containing the necessary tools for command localization. /// TranslationGuildContext Translations { get; } } }