10 lines
213 B
C#
10 lines
213 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; }
|
|
}
|