MrFJ
MrFJ
Hey, I just ran into a similar issue, though your solution does not seem to work for me. This: ```cs public IEnumerable EntitiesSerialized { get; set; } = new Dictionary();...
Thanks for the quick response! I changed my implementation to: ```cs public Dictionary Entities { get; set; } = new (); public IEnumerable EntitiesSerialized { get => Entities; set =>...
It seems I spoke too soon. This is my JSON: ```json "EntitiesSerialized": [ { "Key": { "x": 6, "y": 12, "z": 0 }, "Value": "PassiveEnemyShip" }, { "Key": { "x":...