mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
c7c6c626e1
* fix nullable warnings * use collection initalizers
24 lines
648 B
C#
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; }
|
|
} |