2021-11-26 21:10:56 -05:00
|
|
|
namespace Myriad.Gateway;
|
|
|
|
|
|
|
|
public record GatewaySettings
|
2020-12-22 13:15:26 +01:00
|
|
|
{
|
2021-11-26 21:10:56 -05:00
|
|
|
public string Token { get; init; }
|
|
|
|
public GatewayIntent Intents { get; init; }
|
|
|
|
public int? MaxShardConcurrency { get; init; }
|
|
|
|
public string? GatewayQueueUrl { get; init; }
|
2020-12-22 13:15:26 +01:00
|
|
|
}
|