Beispiel #1
0
 public static async Task <bool> IsQuotingEnabledAsync(this DiscordUser user) => await user.GetAsync <bool>("quoting", false);
Beispiel #2
0
 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");