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