2025-05-07 23:54:46 -05:00
|
|
|
namespace StevesBot.Worker.Discord;
|
|
|
|
|
|
2025-05-11 22:39:14 -05:00
|
|
|
internal sealed class DiscordGatewayClientOptions
|
2025-05-07 23:54:46 -05:00
|
|
|
{
|
|
|
|
|
public string ApiUrl { get; init; } = string.Empty;
|
|
|
|
|
public string AppToken { get; init; } = string.Empty;
|
2025-05-09 18:28:40 -05:00
|
|
|
public long Intents { get; init; }
|
2025-05-08 01:36:04 -05:00
|
|
|
}
|