Files
kemkas-backend/Kemkas.Web/ViewModels/Szintlepes.cs
T

24 lines
639 B
C#

using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public class Szintlepes
{
[JsonPropertyName("osztaly")]
public string Osztaly { get; set; }
[JsonPropertyName("HProll")]
public byte HProll { get; set; }
[JsonPropertyName("tolvajExtraKepzettseg")]
public string? TolvajExtraKepzettseg { get; set; }
[JsonPropertyName("harcosFegyver")]
public string? HarcosFegyver { get; set; }
[JsonPropertyName("kalozKritikus")]
public string? KalozKritikus { get; set; }
[JsonPropertyName("tulajdonsagNoveles")]
public string? TulajdonsagNoveles { get; set; }
}