diff --git a/src/Infrastructure/Options/RabbitMqOptions.cs b/src/Infrastructure/Options/RabbitMqOptions.cs new file mode 100644 index 0000000..c9abc5d --- /dev/null +++ b/src/Infrastructure/Options/RabbitMqOptions.cs @@ -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; } +} \ No newline at end of file