20 lines
596 B
C#
20 lines
596 B
C#
using PARR.Domain.Settings;
|
|
|
|
namespace PARR.EsppScheduleSync.Settings
|
|
{
|
|
internal class GlobalSettings
|
|
{
|
|
public MqSettings? MqSettings { get; set; }
|
|
public string ParsingSeparator { get; set; } = "<|>";
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|