8 lines
172 B
C#
8 lines
172 B
C#
namespace Myriad.Gateway
|
|
{
|
|
public record GatewaySettings
|
|
{
|
|
public string Token { get; init; }
|
|
public GatewayIntent Intents { get; init; }
|
|
}
|
|
} |