Files
SPT-Server-Build/Libraries/Core/Models/Eft/Prestige/ObtainPrestigeRequest.cs
T
2025-01-19 17:45:48 +00:00

26 lines
532 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Prestige
{
public record ObtainPrestigeRequest
{
[JsonPropertyName("id")]
public string Id { get; set; }
[JsonPropertyName("location")]
public Location Location { get; set; }
}
public record Location
{
[JsonPropertyName("x")]
public int X { get; set; }
[JsonPropertyName("y")]
public int Y { get; set; }
[JsonPropertyName("z")]
public int Z { get; set; }
}
}