28a434a622
Changed Comments to adhere to xml standard in all Models. Added missing comments.
26 lines
457 B
C#
26 lines
457 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Common.Tables;
|
|
using Core.Models.Enums;
|
|
|
|
namespace Core.Models.Eft.Location;
|
|
|
|
public record GetAirdropLootResponse
|
|
{
|
|
/// <summary>
|
|
/// The type of airdrop
|
|
/// </summary>
|
|
[JsonPropertyName("icon")]
|
|
public AirdropTypeEnum? Icon
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("container")]
|
|
public List<Item>? Container
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|