using System.Text.Json.Serialization; namespace SPTarkov.Server.Core.Models.Eft.Match; public record ProfileStatusResponse { [JsonExtensionData] public Dictionary? ExtensionData { get; set; } [JsonPropertyName("maxPveCountExceeded")] public bool? MaxPveCountExceeded { get; set; } [JsonPropertyName("profiles")] public List? Profiles { get; set; } }