25 lines
670 B
C#
25 lines
670 B
C#
namespace PARR.EsppTemplateSync.Settings
|
|
{
|
|
internal class GlobalSettings
|
|
{
|
|
public MqSettings? MqSettings { get; set; }
|
|
|
|
public StorageSettings? StorageSettings { get; set; }
|
|
public List<string>? IgnoreTemplateFields { get; set; }
|
|
public string ParsingSeparator { get; set; } = "<|>";
|
|
}
|
|
|
|
internal class MqSettings
|
|
{
|
|
public string? HostName { get; set; }
|
|
public string? QueueName { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? Password { get; set; }
|
|
}
|
|
|
|
internal class StorageSettings
|
|
{
|
|
public int CheckIntervalSeconds { get; set; } = 5;
|
|
}
|
|
}
|