add rabbitmq connection options

master
Young 7 months ago
parent 3c739b6e42
commit 76ed546018

@ -0,0 +1,14 @@
namespace Infrastructure.Options;
public class RabbitMqOptions
{
public string Host { get; set; } = string.Empty;
public string VirtualHost { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public int Port { get; set; }
}
Loading…
Cancel
Save