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