using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Utils; namespace SPTarkov.Server.Core.Models.Eft.Profile; public record ProfileChangeVoiceRequestData : IRequestData { [JsonExtensionData] public Dictionary? ExtensionData { get; set; } [JsonPropertyName("voice")] public MongoId Voice { get; set; } }