using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Eft.Common.Tables; namespace SPTarkov.Server.Core.Models.Eft.Profile; public record GetAchievementsResponse { [JsonExtensionData] public Dictionary? ExtensionData { get; set; } [JsonPropertyName("elements")] public List? Elements { get; set; } }