2024-09-12 15:05:47 +10:00
|
|
|
|
using PARR.BLL.Contracts.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.JobAutoControl.Settings
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class MqSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public Generator Generator { get; set; }
|
|
|
|
|
|
public Activator Activator { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
internal class Generator : IMqSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string HostName { get; set; } = string.Empty;
|
|
|
|
|
|
public string QueueName { get; set; } = string.Empty;
|
|
|
|
|
|
public string User { get; set; } = string.Empty;
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2025-08-20 14:10:22 +10:00
|
|
|
|
public ushort? PrefetchCount { get; set; } = 0;
|
2024-09-12 15:05:47 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
internal class Activator : IMqSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string HostName { get; set; } = string.Empty;
|
|
|
|
|
|
public string QueueName { get; set; } = string.Empty;
|
|
|
|
|
|
public string User { get; set; } = string.Empty;
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2025-08-20 14:10:22 +10:00
|
|
|
|
public ushort? PrefetchCount { get; set; } = 0;
|
2024-09-12 15:05:47 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|