feat(aihitMainSyncer): Написана логика создания новых Unit и Field.
This commit is contained in:
15
PARR.AIHITMainSyncer/Settings/MqSettings.cs
Normal file
15
PARR.AIHITMainSyncer/Settings/MqSettings.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using PARR.BLL.Contracts.Interfaces;
|
||||
|
||||
namespace PARR.AIHITMainSyncer.Settings
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
7
PARR.AIHITMainSyncer/Settings/WorkerSettings.cs
Normal file
7
PARR.AIHITMainSyncer/Settings/WorkerSettings.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace PARR.AIHITMainSyncer.Settings
|
||||
{
|
||||
internal class WorkerSettings
|
||||
{
|
||||
public TimeSpan RepeatEvery { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user