This commit is contained in:
2024-03-08 07:51:57 +01:00
commit e84a2f4f8d
191 changed files with 43915 additions and 0 deletions
@@ -0,0 +1,24 @@
using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public struct CharacterListItemDto()
{
[JsonPropertyName("id")]
public required Guid Id { get; set; }
[JsonPropertyName("name")]
public required string Name { get; set; }
[JsonPropertyName("szint")]
public required byte Szint { get; set; }
[JsonPropertyName("faj")]
public required string Faj { get; set; }
[JsonPropertyName("osztaly")]
public required string Osztaly { get; set; }
[JsonPropertyName("edition")]
public required string Edition { get; set; }
}