mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
16 lines
438 B
C#
16 lines
438 B
C#
using System.Text.Json.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace LootDumpProcessor.Model.Config;
|
|
|
|
public class IntakeReaderConfig
|
|
{
|
|
[JsonProperty("maxDumpsPerMap")]
|
|
[JsonPropertyName("maxDumpsPerMap")]
|
|
public int MaxDumpsPerMap { get; set; } = 1500;
|
|
|
|
|
|
[JsonProperty("ignoredDumpLocations")]
|
|
[JsonPropertyName("ignoredDumpLocations")]
|
|
public List<string> IgnoredDumpLocations { get; set; } = new();
|
|
} |