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