Files
SPT-Server-Build/Core/Models/Eft/Prestige/GetPrestigeResponse.cs
T
2025-01-07 06:52:03 -05:00

9 lines
204 B
C#

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