using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Eft.Inventory; namespace SPTarkov.Server.Core.Models.Eft.Hideout; public record HideoutCustomizationApplyRequestData : InventoryBaseActionRequestData { /// /// Id of the newly picked item to apply to hideout /// [JsonPropertyName("offerId")] public string? OfferId { get; set; } [JsonPropertyName("timestamp")] public long? Timestamp { get; set; } }