2025-05-07 23:54:46 -05:00
|
|
|
namespace StevesBot.Worker.Discord;
|
|
|
|
|
|
2025-05-08 01:36:04 -05:00
|
|
|
internal sealed class DiscordClientOptions
|
2025-05-07 23:54:46 -05:00
|
|
|
{
|
|
|
|
|
public string ApiUrl { get; init; } = string.Empty;
|
|
|
|
|
public string AppToken { get; init; } = string.Empty;
|
|
|
|
|
public int Intents { get; init; }
|
2025-05-08 01:36:04 -05:00
|
|
|
}
|