9 lines
211 B
C#
9 lines
211 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; }
|
|
} |