9 lines
189 B
C#
9 lines
189 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Profile;
|
|
|
|
public class ValidateNicknameRequestData
|
|
{
|
|
[JsonPropertyName("nickname")]
|
|
public string Nickname { get; set; }
|
|
} |