Files
SPT-Server-Build/Core/Models/Eft/Profile/ProfileChangeVoiceRequestData.cs
T
2025-01-10 17:44:53 +00:00

11 lines
233 B
C#

using System.Text.Json.Serialization;
using Core.Models.Utils;
namespace Core.Models.Eft.Profile;
public class ProfileChangeVoiceRequestData : IRequestData
{
[JsonPropertyName("voice")]
public string? Voice { get; set; }
}