Files
2025-08-21 09:46:00 +00:00

16 lines
356 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Location;
public record GetLocationRequestData
{
[JsonPropertyName("crc")]
public int? Crc { get; set; }
[JsonPropertyName("locationId")]
public string? LocationId { get; set; }
[JsonPropertyName("variantId")]
public int? VariantId { get; set; }
}