Files
SPT-Server-Build/Core/Models/Eft/Hideout/HideoutCustomizationApplyRequestData.cs
T
2025-01-17 18:13:37 +00:00

19 lines
484 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout;
public record HideoutCustomizationApplyRequestData
{
[JsonPropertyName("Action")]
public string? Action { get; set; } = "HideoutCustomizationApply";
/// <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; }
}