Files
2025-08-21 09:46:00 +00:00

20 lines
451 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Models.Eft.Profile;
/// <summary>
/// Identical to `UserDialogInfo`
/// </summary>
public record SearchFriendResponse
{
[JsonPropertyName("_id")]
public MongoId Id { get; set; }
[JsonPropertyName("aid")]
public int? Aid { get; set; }
[JsonPropertyName("Info")]
public UserDialogDetails? Info { get; set; }
}