13 lines
321 B
C#
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; }
|
|
}
|