feat(gateway): add MxGateway:Tls options block

This commit is contained in:
Joseph Doherty
2026-06-01 07:08:19 -04:00
parent e912ef960c
commit 87f86503ef
3 changed files with 64 additions and 0 deletions
@@ -43,4 +43,7 @@ public sealed class GatewayOptions
/// behaviour (alarms disabled).
/// </summary>
public AlarmsOptions Alarms { get; init; } = new();
/// <summary>Gets self-signed TLS certificate auto-generation options.</summary>
public TlsOptions Tls { get; init; } = new();
}