Default values for hostname and port

This commit is contained in:
2026-01-18 15:45:50 +01:00
Unverified
parent 3949d048d0
commit e1f2720379

View File

@@ -5,8 +5,8 @@ namespace TimetableDesigner.Backend.Events.Providers.RabbitMQ;
public class RabbitMQEventQueue : EventQueue public class RabbitMQEventQueue : EventQueue
{ {
public string Hostname { get; set; } = null!; public string Hostname { get; set; } = "localhost";
public int Port { get; set; } public int Port { get; set; } = 5672;
public string Username { get; set; } = null!; public string Username { get; set; } = null!;
public string Password { get; set; } = null!; public string Password { get; set; } = null!;
public string ExchangeName { get; set; } = null!; public string ExchangeName { get; set; } = null!;