2639504471
Removed unnecessary properties from quest object
23 lines
543 B
C#
23 lines
543 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Services;
|
|
|
|
public record LootItem
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("id")]
|
|
public MongoId? Id { get; set; }
|
|
|
|
[JsonPropertyName("tpl")]
|
|
public MongoId? Tpl { get; set; }
|
|
|
|
[JsonPropertyName("isPreset")]
|
|
public bool? IsPreset { get; set; }
|
|
|
|
[JsonPropertyName("stackCount")]
|
|
public int? StackCount { get; set; }
|
|
}
|