diff --git a/DiscordClient/DiscordUserClient.cs b/DiscordClient/DiscordUserClient.cs index d91d412..7a9a3cb 100644 --- a/DiscordClient/DiscordUserClient.cs +++ b/DiscordClient/DiscordUserClient.cs @@ -54,6 +54,15 @@ public class DiscordUserClient return await _httpClient.DeleteAsync(url); } + /// + /// This method returns some of most recent messages, sent to a guild. + /// + /// Guild ID from which we're gathering messages. + /// + /// Optional author ID. If specified, gather only + /// recent messages from this particular author. + /// + /// public async Task SearchGuildMessages( string guildId, string? authorId = null