new interactive mode

This commit is contained in:
2025-04-06 01:43:27 +05:00
parent b0c8841250
commit c1d1361d50
3 changed files with 230 additions and 103 deletions
@@ -0,0 +1,13 @@
using System.Text.Json.Serialization;
namespace ParadoxSaveParser.Lib;
[JsonSourceGenerationOptions(MaxDepth = 1024, WriteIndented = true)]
[JsonSerializable(typeof(Dictionary<string, List<object>>))]
[JsonSerializable(typeof(List<object>))]
[JsonSerializable(typeof(string))]
[JsonSerializable(typeof(long))]
[JsonSerializable(typeof(double))]
public partial class ParsedValueJsonContext : JsonSerializerContext
{
}