mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
14 lines
380 B
C#
14 lines
380 B
C#
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!;
|
|
|
|
} |