19 lines
395 B
C#
19 lines
395 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Common;
|
|
|
|
public record XYZ
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("x")]
|
|
public double? X { get; set; }
|
|
|
|
[JsonPropertyName("y")]
|
|
public double? Y { get; set; }
|
|
|
|
[JsonPropertyName("z")]
|
|
public double? Z { get; set; }
|
|
}
|