2026-04-14 12:01:49 +10:00
|
|
|
|
using PARR.Domain.Settings;
|
2024-09-12 15:05:47 +10:00
|
|
|
|
|
|
|
|
|
|
namespace PARR.JobAutoControl.Settings
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class MqSettings
|
|
|
|
|
|
{
|
2025-12-09 08:40:05 +10:00
|
|
|
|
public TemplateMatcher TemplateMatcher { get; set; } = new TemplateMatcher();
|
2024-09-12 15:05:47 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-09 08:40:05 +10:00
|
|
|
|
internal class TemplateMatcher : IMqSettings
|
2024-09-12 15:05:47 +10:00
|
|
|
|
{
|
2026-04-14 12:01:49 +10:00
|
|
|
|
public string HostName { get; init; } = string.Empty;
|
|
|
|
|
|
public string QueueName { get; init; } = string.Empty;
|
|
|
|
|
|
public string User { get; init; } = string.Empty;
|
|
|
|
|
|
public string Password { get; init; } = string.Empty;
|
|
|
|
|
|
public ushort? PrefetchCount { get; init; } = 0;
|
2024-09-12 15:05:47 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|