0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 09:50:44 -05:00

15 lines
656 B
C#
Raw Normal View History

2023-08-12 19:08:38 +01:00
namespace LootDumpProcessor.Model.Config;
public class Config
{
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; }
public DumpProcessorConfig DumpProcessorConfig { get; set; }
2023-08-12 19:08:38 +01:00
public WriterConfig WriterConfig { get; set; }
public CollectorConfig CollectorConfig { get; set; }
2023-09-08 15:35:19 +01:00
public Dictionary<string, string[]> ContainerIgnoreList { get; set; }
public List<string> MapsToProcess { get; set; }
2023-08-12 19:08:38 +01:00
}