24 lines
612 B
C#
24 lines
612 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 FriendRequestData : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("status")]
|
|
public int? Status { get; set; }
|
|
|
|
[JsonPropertyName("requestId")]
|
|
public string? RequestId { get; set; }
|
|
|
|
[JsonPropertyName("retryAfter")]
|
|
public int? RetryAfter { get; set; }
|
|
|
|
[JsonPropertyName("to")]
|
|
public MongoId? To { get; set; }
|
|
}
|