Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HideoutCustomizationApplyRequestData.cs
T
2025-02-07 19:36:17 +00:00

25 lines
497 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Inventory;
namespace Core.Models.Eft.Hideout;
public record HideoutCustomizationApplyRequestData : InventoryBaseActionRequestData
{
/// <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;
}
}