Files
kemkas-backend/Kemkas.Web/ViewModels/Szintlepes.cs
T
morbalint c7c6c626e1 fix nullable warnings (#49)
* fix nullable warnings

* use collection initalizers
2026-04-05 12:48:25 +02:00

24 lines
648 B
C#

using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public class Szintlepes
{
[JsonPropertyName("osztaly")]
public required 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; }
}