Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Quests/HandoverQuestRequestData.cs
T

18 lines
495 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
using SPTarkov.Server.Core.Models.Eft.Inventory;
namespace SPTarkov.Server.Core.Models.Eft.Quests;
public record HandoverQuestRequestData : InventoryBaseActionRequestData
{
[JsonPropertyName("qid")]
public MongoId QuestId { get; set; }
[JsonPropertyName("conditionId")]
public MongoId ConditionId { get; set; }
[JsonPropertyName("items")]
public List<IdWithCount>? Items { get; set; }
}