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