2639504471
Removed unnecessary properties from quest object
21 lines
572 B
C#
21 lines
572 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 CompleteQuestRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
/// <summary>
|
|
/// Quest Id
|
|
/// </summary>
|
|
[JsonPropertyName("qid")]
|
|
public MongoId QuestId { get; set; }
|
|
|
|
[JsonPropertyName("removeExcessItems")]
|
|
public bool? RemoveExcessItems { get; set; }
|
|
}
|