d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
23 lines
522 B
C#
23 lines
522 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
|
|
{
|
|
|
|
|
|
[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; }
|
|
}
|