9 lines
190 B
C#
9 lines
190 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Dialog;
|
|
|
|
public class DeleteFriendRequest
|
|
{
|
|
[JsonPropertyName("friend_id")]
|
|
public string FriendId { get; set; }
|
|
} |