Added new request object
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user