namespace DumpLib.Models { public class SptConfigClass { /// /// Default: Test /// public string Name { get; set; } /// /// Default: [ "Interchange", "factory4_day", "laboratory", "bigmap", "Lighthouse", "RezervBase", "Sandbox", "Shoreline", "TarkovStreets", "Woods" ] /// public string[] MapNames { get; set; } /// /// Default: "yyyy-MM-dd_HH-mm-ss" /// public string DateTimeFormat { get; set; } public bool QuickDumpEnabled { get; set; } public SptReflections SptReflections { get; set; } public SptTimings SptTimings { get; set; } } public class SptTimings { /// /// Default: 10s * 1000ms = 10000ms /// public int SingleIterationDelayMs { get; set; } /// /// Default: 5m * 60s * 1000ms = 300000ms /// public int AllIterationDelayMs { get; set; } } public class SptReflections { /// /// Default: "get_MainURLFull" as of 128476 client /// public string MainUrlPropName { get; set; } /// /// Default: "Params" as of 128476 client /// public string ParamFieldName { get; set; } /// /// Default: "responseText" as of 128476 client /// public string RequestFieldName { get; set; } } }