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:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user