should fix manakin pose request, somehow managed to get it without one, just by going in and out into that area

This commit is contained in:
CWX
2025-01-26 22:42:38 +00:00
parent 55126ef96d
commit 982e59e7d3
2 changed files with 3 additions and 3 deletions
@@ -6,7 +6,7 @@ namespace Core.Models.Eft.Health;
using System.Text.Json.Serialization;
public class WorkoutData : Dictionary<string, object> , IRequestData
public class WorkoutData : IRequestData
{
[JsonPropertyName("skills")]
public WorkoutSkills? Skills { get; set; }
@@ -6,8 +6,8 @@ namespace Core.Models.Eft.Hideout;
public record HideoutCustomizationSetMannequinPoseRequest : BaseInteractionRequestData
{
[JsonPropertyName("poses")]
public Dictionary<string, string> Poses { get; set; }
public Dictionary<string, string>? Poses { get; set; }
[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }
public double? Timestamp { get; set; }
}