14 lines
394 B
C#
14 lines
394 B
C#
using PARR.Domain.Settings;
|
|
|
|
namespace PARR.TemplateActivator;
|
|
|
|
internal class MqSettings : IMqSettings
|
|
{
|
|
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;
|
|
}
|
|
|