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 07:50:47 -05:00
Code
loot-dump-processor
/
source
/
LootDumpProcessor
/
Model
/
Foldable.cs
3 lines
88 B
C#
Raw
Permalink
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
;
initial push of Loot Processing Tool
2023-08-12 19:08:38 +01:00
Refactored model classes to use records and improved immutability
2025-01-11 12:15:01 +03:00
public
readonly
record
struct
Foldable
(
bool
Folded
)
;
Copy Permalink