wip: guild member remove
This commit is contained in:
parent
db01f879bd
commit
516ce3a6e9
6 changed files with 95 additions and 1 deletions
|
|
@ -8,6 +8,7 @@ public interface IMemberCache
|
|||
public Task<IGuildMember?> TryGetAsync(Snowflake guildId, Snowflake userId);
|
||||
public Task SetAsync(Snowflake guildId, IGuildMember member);
|
||||
public Task SetManyAsync(Snowflake guildId, IReadOnlyList<IGuildMember> members);
|
||||
public Task RemoveAsync(Snowflake guildId, Snowflake userId);
|
||||
public Task<bool> IsGuildCachedAsync(Snowflake guildId);
|
||||
public Task MarkAsCachedAsync(Snowflake guildId);
|
||||
public Task MarkAsUncachedAsync(Snowflake guildId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue