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

35 lines
624 B
C#

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