Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Location/AirdropLootResult.cs
T
2025-06-25 15:16:38 +01:00

17 lines
423 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Spt.Services;
namespace SPTarkov.Server.Core.Models.Eft.Location;
public record AirdropLootResult
{
[JsonExtensionData]
public Dictionary<string, object>? ExtensionData { get; set; }
[JsonPropertyName("dropType")]
public string? DropType { get; set; }
[JsonPropertyName("loot")]
public List<LootItem>? Loot { get; set; }
}