20 lines
451 B
C#
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; }
|
|
}
|