mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-18 05:33:47 +00:00
24 lines
639 B
C#
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; }
|
|
} |