Files
SPT-Server-Build/Core/Models/Eft/Profile/GetOtherProfileRequest.cs
T
2025-01-17 18:13:37 +00:00

11 lines
235 B
C#

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