Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Prestige/GetPrestigeResponse.cs
T
2025-08-21 09:46:00 +00:00

10 lines
229 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Prestige;
public record GetPrestigeResponse
{
[JsonPropertyName("elements")]
public List<Common.Tables.Prestige>? Elements { get; set; }
}