Files
SPT-Server-Build/Core/Models/Eft/Prestige/ObtainPrestigeRequest.cs
T
2025-01-14 11:00:54 +00:00

26 lines
530 B
C#

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