add save button and remove asp.net SPA proxy
using the docker compose nginx proxy instead
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user