add missing jsonPropNames

This commit is contained in:
CWX
2025-01-23 13:37:48 +00:00
parent 5f8717cf46
commit 8176c815da
@@ -43,12 +43,17 @@ public record Item
public record ItemLocation
{
[JsonPropertyName("x")]
public int? X { get; set; }
[JsonPropertyName("y")]
public int? Y { get; set; }
[JsonPropertyName("r")]
public object? R { get; set; } // TODO: Can be string or number
[JsonPropertyName("isSearched")]
public bool? IsSearched { get; set; }
/** SPT property? */
[JsonPropertyName("rotation")]
public object? Rotation { get; set; } // TODO: Can be string or boolean
}