2023-08-12 19:08:38 +01:00
|
|
|
namespace LootDumpProcessor.Model.Config;
|
|
|
|
|
|
|
|
public class Config
|
|
|
|
{
|
2025-01-11 09:12:21 +03:00
|
|
|
public string ServerLocation { get; set; } = string.Empty;
|
2023-08-12 19:08:38 +01:00
|
|
|
public bool ManualGarbageCollectionCalls { get; set; }
|
|
|
|
public DataStorageConfig DataStorageConfig { get; set; }
|
|
|
|
public ReaderConfig ReaderConfig { get; set; }
|
|
|
|
public ProcessorConfig ProcessorConfig { get; set; }
|
2023-08-13 17:26:49 +01:00
|
|
|
public DumpProcessorConfig DumpProcessorConfig { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
public WriterConfig WriterConfig { get; set; }
|
2024-04-16 18:29:40 +00:00
|
|
|
public CollectorConfig CollectorConfig { get; set; }
|
2023-09-08 15:35:19 +01:00
|
|
|
public Dictionary<string, string[]> ContainerIgnoreList { get; set; }
|
2024-12-31 09:12:48 +00:00
|
|
|
public List<string> MapsToProcess { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
}
|