Files
SPT-Server-Build/Core/Models/Eft/Profile/GetOtherProfileRequest.cs
T
2025-01-07 06:44:41 -05:00

9 lines
187 B
C#

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