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

11 lines
267 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Utils;
namespace SPTarkov.Server.Core.Models.Eft.Profile;
public record GetOtherProfileRequest : IRequestData
{
[JsonPropertyName("accountId")]
public string? AccountId { get; set; }
}