feat: 2e save character initial implementation WIP

2e is hidden behind url navigation hiding, so hoping that nobody found it yet.

Note: DB migration make this commit a bit risky!
This commit is contained in:
2024-02-14 17:34:20 +01:00
parent 8b3fa2fefa
commit 41e894cd42
39 changed files with 1987 additions and 365 deletions
+24
View File
@@ -0,0 +1,24 @@
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; }
}