add save button and remove asp.net SPA proxy

using the docker compose nginx proxy instead
This commit is contained in:
2023-12-20 12:53:30 +01:00
parent f619cc850a
commit bc158279d8
10 changed files with 100 additions and 103 deletions
@@ -1,11 +1,19 @@
using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public struct KarakterTulajdonsagokDto
{
public byte T_Ero { get; set; }
public byte T_Ugy { get; set; }
public byte T_Egs { get; set; }
public byte T_Int { get; set; }
public byte T_Bol { get; set; }
public byte T_Kar { get; set; }
[JsonPropertyName("t_ero")]
public byte Ero { get; set; }
[JsonPropertyName("t_ugy")]
public byte Ugy { get; set; }
[JsonPropertyName("t_egs")]
public byte Egs { get; set; }
[JsonPropertyName("t_int")]
public byte Int { get; set; }
[JsonPropertyName("t_bol")]
public byte Bol { get; set; }
[JsonPropertyName("t_kar")]
public byte Kar { get; set; }
}