This website requires JavaScript.
Explore
Help
Sign In
spt
/
loot-dump-processor
Watch
0
Star
0
Fork
0
You've already forked loot-dump-processor
mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced
2025-02-13 09:50:44 -05:00
Code
loot-dump-processor
/
source
/
LootDumpProcessor
/
Model
/
Input
/
Standing.cs
3 lines
97 B
C#
Raw
Normal View
History
Unescape
Escape
Refactored code to use System.Text.Json and improved code style The changes include: - Replaced Newtonsoft.Json with System.Text.Json for serialization - Removed redundant JsonProperty attributes and simplified model classes - Converted static fields to constants where appropriate - Improved code formatting and readability - Simplified method bodies and expressions - Removed unused imports and cleaned up namespaces
2025-01-11 10:52:23 +03:00
namespace
LootDumpProcessor.Model.Input
;
Changes for 3.10 (32160) - Updates the Model/Input classes to match the new export JSON structure - Updates references to model structure - Updates SevenZipSharp package - Adds a few null checks
2024-08-22 15:33:27 -04:00
Refactored model classes to use records and improved immutability
2025-01-11 12:15:01 +03:00
public
readonly
record
struct
Standing
(
float
Value
)
;
Copy Permalink