feat(esppScheduleSync): создан проект. Добавлена основная логика синхронизации. Docker
This commit is contained in:
18
PARR.EsppScheduleSync/Settings/GlobalSettings.cs
Normal file
18
PARR.EsppScheduleSync/Settings/GlobalSettings.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using PARR.BLL.Contracts.Interfaces;
|
||||
|
||||
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; set; } = string.Empty;
|
||||
public string QueueName { get; set; } = string.Empty;
|
||||
public string User { get; set; } = string.Empty;
|
||||
public string Password { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user