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