11 lines
242 B
C#
11 lines
242 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Utils;
|
|
|
|
namespace Core.Models.Eft.Location;
|
|
|
|
public record GetAirdropLootRequest : IRequestData
|
|
{
|
|
[JsonPropertyName("containerId")]
|
|
public string? ContainerId { get; set; }
|
|
}
|