Files
SPT-Server-Build/Libraries/Core/Models/Eft/Prestige/GetPrestigeResponse.cs
T
2025-02-07 19:36:17 +00:00

14 lines
237 B
C#

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