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