mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
c7c6c626e1
* fix nullable warnings * use collection initalizers
33 lines
923 B
C#
33 lines
923 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Kemkas.Web.ViewModels;
|
|
|
|
public class KarakterFelszereles2eDto
|
|
{
|
|
[JsonPropertyName("pancelID")]
|
|
public string? PancelId { get; set; }
|
|
|
|
[JsonPropertyName("pajzsID")]
|
|
public string? PajzsId { get; set; }
|
|
|
|
[JsonPropertyName("fegyverek")]
|
|
public IList<FelszerelesIdAndCount> Fegyverek { get; set; } = [];
|
|
|
|
[JsonPropertyName("viselt")]
|
|
public IList<FelszerelesIdAndCount> Viselt { get; set; } = [];
|
|
|
|
[JsonPropertyName("cipelt")]
|
|
public IList<FelszerelesIdAndCount> Cipelt { get; set; } = [];
|
|
|
|
[JsonPropertyName("aprosagok")]
|
|
public IList<FelszerelesIdAndCount> Aprosagok { get; set; } = [];
|
|
|
|
[JsonPropertyName("at")]
|
|
public int AranyTaller { get; set; }
|
|
|
|
[JsonPropertyName("el")]
|
|
public int ElektrumTaller { get; set; }
|
|
|
|
[JsonPropertyName("et")]
|
|
public int EzustTaller { get; set; }
|
|
} |