Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HandleQTEEventRequestData.cs
T
TetrisGG 28a434a622 Update Models Comments
Changed Comments to adhere to xml standard in all Models.
Added missing comments.
2025-03-04 22:38:11 +01:00

35 lines
668 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Inventory;
namespace 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("timestamp")]
public long? Timestamp
{
get;
set;
}
}