d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
14 lines
306 B
C#
14 lines
306 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record DeleteFriendRequest : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("friend_id")]
|
|
public MongoId FriendId { get; set; }
|
|
}
|