15 lines
450 B
C#
15 lines
450 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Hideout;
|
|
|
|
public record HideoutCustomizationSetMannequinPoseRequest : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("poses")]
|
|
public Dictionary<MongoId, MongoId>? Poses { get; set; }
|
|
|
|
[JsonPropertyName("timestamp")]
|
|
public double? Timestamp { get; set; }
|
|
}
|