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