2023-08-28 16:03:39 +10:00
|
|
|
|
namespace PARR.EsppTemplateSync.Settings
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class GlobalSettings
|
2023-08-31 12:04:05 +10:00
|
|
|
|
{
|
2023-09-01 11:47:39 +10:00
|
|
|
|
public MqSettings? MqSettings { get; set; }
|
2023-08-31 12:04:05 +10:00
|
|
|
|
|
|
|
|
|
|
public StorageSettings? StorageSettings { get; set; }
|
2023-09-20 11:52:30 +10:00
|
|
|
|
public List<string>? IgnoreTemplateFields { get; set; }
|
2023-08-31 12:04:05 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
internal class MqSettings
|
|
|
|
|
|
{
|
2023-09-01 11:47:39 +10:00
|
|
|
|
public string? HostName { get; set; }
|
|
|
|
|
|
public string? QueueName { get; set; }
|
|
|
|
|
|
public string? UserName { get; set; }
|
|
|
|
|
|
public string? Password { get; set; }
|
2023-08-31 12:04:05 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
internal class StorageSettings
|
2023-08-28 16:03:39 +10:00
|
|
|
|
{
|
|
|
|
|
|
public int CheckIntervalSeconds { get; set; } = 5;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|