mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
9 lines
No EOL
248 B
C#
9 lines
No EOL
248 B
C#
namespace Myriad.Gateway;
|
|
|
|
public record GatewaySettings
|
|
{
|
|
public string Token { get; init; }
|
|
public GatewayIntent Intents { get; init; }
|
|
public int? MaxShardConcurrency { get; init; }
|
|
public string? GatewayQueueUrl { get; init; }
|
|
} |