5b963b25a7
- Add Hrynco.RabbitMq class library with RabbitMQ client abstractions - Add Hrynco.RabbitMq.Tests xunit project - ImplicitUsings disabled on all projects Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
11 lines
303 B
C#
11 lines
303 B
C#
namespace Hrynco.RabbitMq;
|
|
|
|
public record RabbitMqSettings
|
|
{
|
|
public required string Host { get; init; }
|
|
public required string User { get; init; }
|
|
public required string Password { get; init; }
|
|
public int Port { get; init; } = 5672;
|
|
public string VirtualHost { get; init; } = "/";
|
|
}
|