Files
kemkas-backend/Kemkas.Web/ViewModels/KarakterVarazslat2eDto.cs
T
morbalint c7c6c626e1 fix nullable warnings (#49)
* fix nullable warnings

* use collection initalizers
2026-04-05 12:48:25 +02:00

15 lines
365 B
C#

using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public class KarakterVarazslat2eDto
{
[JsonPropertyName("id")]
public required string VarazslatId { get; set; }
[JsonPropertyName("bekeszitve")]
public bool Bekeszitve { get; set; }
[JsonPropertyName("osztaly")]
public required string Osztaly { get; set; }
}