Added new request object

This commit is contained in:
Chomp
2025-01-14 11:00:54 +00:00
parent 58f7390468
commit a615e82086
@@ -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; }
}
}