namespace FluxPose.DiscordBot.Users; public class Actions(GatewayClient client, TContext context) : ActionsBase(context) where TContext : IInteractionContext { public async Task> GetAllUsersFromGuild() { var users = await client.Rest.GetGuildUsersAsync(GuildId).ToListAsync(); if (users == null) { return []; } return users; } }