birbmap/Birdmap.BLL/Options/RabbitMqClientOptions.cs

5 lines
153 B
C#
Raw Normal View History

2021-01-16 15:23:10 +01:00
namespace Birdmap.BLL.Options
{
public record RabbitMqClientOptions(string Hostname, int Port, string Username, string Password, string Topic);
}