mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-18 03:13:46 +00:00
41e894cd42
2e is hidden behind url navigation hiding, so hoping that nobody found it yet. Note: DB migration make this commit a bit risky!
24 lines
640 B
C#
24 lines
640 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Kemkas.Web.ViewModels;
|
|
|
|
public struct 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; }
|
|
} |