Files
2025-10-10 23:15:25 -07:00

26 lines
701 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Inventory;
namespace SPTarkov.Server.Core.Models.Eft.Hideout;
public record HandleQTEEventRequestData : InventoryBaseActionRequestData
{
/// <summary>
/// true if QTE was successful, otherwise false
/// </summary>
[JsonPropertyName("results")]
public List<bool>? Results { get; set; }
/// <summary>
/// Id of the QTE object used from db/hideout/qte.json
/// </summary>
[JsonPropertyName("id")]
public string? Id { get; set; }
[JsonPropertyName("aid")]
public string? Aid { get; set; }
[JsonPropertyName("timestamp")]
public long? Timestamp { get; set; }
}