feat(aihit): AIHITLoadWorker + AIHITSyncWorker
This commit is contained in:
8
PARR.AIHITLoader/Settings/LoaderSettings.cs
Normal file
8
PARR.AIHITLoader/Settings/LoaderSettings.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace PARR.AIHITLoader.Settings
|
||||
{
|
||||
internal class LoaderSettings
|
||||
{
|
||||
public List<string> ResponseAreas { get; set; } = new List<string>();
|
||||
public int PackageSize { get; set; } = 100;
|
||||
}
|
||||
}
|
||||
12
PARR.AIHITLoader/Settings/MqSettings.cs
Normal file
12
PARR.AIHITLoader/Settings/MqSettings.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using PARR.BLL.Contracts.Interfaces;
|
||||
|
||||
namespace PARR.AIHITLoader.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.AIHITLoader/Settings/WorkerSettings.cs
Normal file
7
PARR.AIHITLoader/Settings/WorkerSettings.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace PARR.AIHITLoader.Settings
|
||||
{
|
||||
internal class WorkerSettings
|
||||
{
|
||||
public TimeSpan RepeatEvery { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user