14 lines
363 B
C#
14 lines
363 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Location;
|
|
|
|
public record GetAirdropLootRequest : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("containerId")]
|
|
public string? ContainerId { get; set; }
|
|
}
|