Files
kemkas-frontend/Kemkas.Web/ViewModels/CharacterListItemDto.cs
T

21 lines
469 B
C#

using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public struct CharacterListItemDto
{
[JsonPropertyName("id")]
public Guid Id { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("szint")]
public byte Szint { get; set; }
[JsonPropertyName("faj")]
public string Faj { get; set; }
[JsonPropertyName("osztaly")]
public string Osztaly { get; set; }
}