public static async Task <bool> IsQuotingEnabledAsync(this DiscordUser user) => await user.GetAsync <bool>("quoting", false);
public static T Get <T>(this DiscordUser user, string key, T @default) => user.GetAsync <T>(key, @default).GetAwaiter().GetResult();
public static async Task <bool> GetDelayDeletingAsync(this DiscordUser user) => await user.GetAsync <bool>("delayDelete");