Files
SPT-Server-Build/Core/Models/Eft/Profile/ProfileChangeNicknameRequestData.cs
T
2025-01-08 13:41:25 +00:00

9 lines
201 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Profile;
public class ProfileChangeNicknameRequestData
{
[JsonPropertyName("nickname")]
public string? Nickname { get; set; }
}