fix: Add DeleteMessagesAsync to IVoiceChannel (#2367)

Also adds remaining rate-limit information to client log.
This commit is contained in:
Pusheon
2022-08-02 05:24:37 -04:00
committed by GitHub
parent 6fdcf98240
commit f17866085e
3 changed files with 44 additions and 2 deletions

View File

@@ -12,6 +12,9 @@ namespace Discord
public int Bitrate => throw new NotImplementedException();
public int? UserLimit => throw new NotImplementedException();
public Task DeleteMessagesAsync(IEnumerable<IMessage> messages, RequestOptions options = null) => throw new NotImplementedException();
public Task DeleteMessagesAsync(IEnumerable<ulong> messageIds, RequestOptions options = null) => throw new NotImplementedException();
public ulong? CategoryId => throw new NotImplementedException();