namespace Azaion.Common.DTO.Config; public class QueueConfig { public string Host { get; set; } = null!; public int Port { get; set; } public string ProducerUsername { get; set; } = null!; public string ProducerPassword { get; set; } = null!; public string ConsumerUsername { get; set; } = null!; public string ConsumerPassword { get; set; } = null!; }