mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
10 lines
271 B
C#
10 lines
271 B
C#
|
using LootDumpProcessor.Process.Collector;
|
||
|
|
||
|
namespace LootDumpProcessor.Model.Config;
|
||
|
|
||
|
public class CollectorConfig
|
||
|
{
|
||
|
public CollectorType CollectorType { get; set; }
|
||
|
public int MaxEntitiesBeforeDumping { get; set; }
|
||
|
public string DumpLocation { get; set; }
|
||
|
}
|