23 lines
549 B
C#
23 lines
549 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
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; init; } = [];
|
|
|
|
[JsonPropertyName("_id")]
|
|
public MongoId Id { get; set; }
|
|
|
|
[JsonPropertyName("aid")]
|
|
public int? Aid { get; set; }
|
|
|
|
[JsonPropertyName("Info")]
|
|
public UserDialogDetails? Info { get; set; }
|
|
}
|