Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Prestige/GetPrestigeResponse.cs
T
2025-06-25 15:16:38 +01:00

13 lines
321 B
C#

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