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