fix: rename client related classes to be specific to gateway

This commit is contained in:
Stevan Freeborn
2025-05-11 22:39:14 -05:00
parent 515c0321c6
commit 54c8e53a77
5 changed files with 29 additions and 29 deletions
@@ -0,0 +1,8 @@
namespace StevesBot.Worker.Discord;
internal sealed class DiscordGatewayClientOptions
{
public string ApiUrl { get; init; } = string.Empty;
public string AppToken { get; init; } = string.Empty;
public long Intents { get; init; }
}