Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Quests/AcceptQuestRequestData.cs
T
2025-03-07 13:16:43 +00:00

22 lines
402 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Inventory;
namespace SPTarkov.Server.Core.Models.Eft.Quests;
public record AcceptQuestRequestData : InventoryBaseActionRequestData
{
[JsonPropertyName("qid")]
public string? QuestId
{
get;
set;
}
[JsonPropertyName("type")]
public string? Type
{
get;
set;
}
}