mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 18:42:56 +00:00
9 lines
296 B
C#
9 lines
296 B
C#
namespace CleanArchitecture.Domain.Rabbitmq;
|
|
|
|
public sealed class RabbitMqConfiguration
|
|
{
|
|
public string Host { get; set; } = string.Empty;
|
|
public bool Enabled { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
} |