15 lines
257 B
C#
15 lines
257 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Utils;
|
|
|
|
namespace Core.Models.Eft.Dialog;
|
|
|
|
public record DeleteFriendRequest : IRequestData
|
|
{
|
|
[JsonPropertyName("friend_id")]
|
|
public string? FriendId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|