28 lines
617 B
C#
28 lines
617 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Hideout;
|
|
|
|
public record HideoutCustomizationApplyRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
/// <summary>
|
|
/// Id of the newly picked item to apply to hideout
|
|
/// </summary>
|
|
[JsonPropertyName("offerId")]
|
|
public string? OfferId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("timestamp")]
|
|
public long? Timestamp
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|