mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-17 19:03:46 +00:00
21 lines
469 B
C#
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; }
|
|
} |