From a615e820863c41316df2f0ca750ef94a34f43667 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 14 Jan 2025 11:00:54 +0000 Subject: [PATCH] Added new request object --- .../Eft/Prestige/ObtainPrestigeRequest.cs | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Core/Models/Eft/Prestige/ObtainPrestigeRequest.cs 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; } + } +}