add missing jsonPropNames
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user