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

20 lines
454 B
C#

using System.Text.Json.Serialization;
using Core.Models.Utils;
namespace Core.Models.Eft.Profile;
public class ProfileCreateRequestData : IRequestData
{
[JsonPropertyName("side")]
public string? Side { get; set; }
[JsonPropertyName("nickname")]
public string? Nickname { get; set; }
[JsonPropertyName("headId")]
public string? HeadId { get; set; }
[JsonPropertyName("voiceId")]
public string? VoiceId { get; set; }
}