2021-08-27 11:03:47 -04:00
|
|
|
namespace Myriad.Gateway
|
2020-12-22 13:15:26 +01:00
|
|
|
{
|
|
|
|
public record GatewaySettings
|
|
|
|
{
|
|
|
|
public string Token { get; init; }
|
|
|
|
public GatewayIntent Intents { get; init; }
|
2021-03-18 09:47:58 +01:00
|
|
|
public int? MaxShardConcurrency { get; init; }
|
2021-06-09 16:22:10 +02:00
|
|
|
public string? GatewayQueueUrl { get; init; }
|
2020-12-22 13:15:26 +01:00
|
|
|
}
|
|
|
|
}
|