diff --git a/Core/Models/Eft/Prestige/ObtainPrestigeRequest.cs b/Core/Models/Eft/Prestige/ObtainPrestigeRequest.cs new file mode 100644 index 00000000..be220073 --- /dev/null +++ b/Core/Models/Eft/Prestige/ObtainPrestigeRequest.cs @@ -0,0 +1,25 @@ +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; } + } +}