18 lines
463 B
C#
18 lines
463 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Common.Tables;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Location;
|
|
|
|
public record GetAirdropLootResponse
|
|
{
|
|
/// <summary>
|
|
/// The type of airdrop
|
|
/// </summary>
|
|
[JsonPropertyName("icon")]
|
|
public AirdropTypeEnum Icon { get; set; }
|
|
|
|
[JsonPropertyName("container")]
|
|
public IEnumerable<Item> Container { get; set; }
|
|
}
|