Added type

This commit is contained in:
Chomp
2025-01-14 18:06:19 +00:00
parent 7f53635dc2
commit 76a334b600
@@ -0,0 +1,16 @@
using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout
{
public class HideoutCustomizationSetMannequinPoseRequest
{
[JsonPropertyName("Action")]
public string? Action { get; set; } = "HideoutCustomizationSetMannequinPose";
[JsonPropertyName("poses")]
public string Poses { get; set; }
[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }
}
}