mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Kemkas.Web.ViewModels;
|
|
|
|
public class KarakterVarazslat2eDto
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string VarazslatId { get; set; }
|
|
|
|
[JsonPropertyName("bekeszitve")]
|
|
public bool Bekeszitve { get; set; }
|
|
|
|
[JsonPropertyName("osztaly")]
|
|
public string Osztaly { get; set; }
|
|
} |