Files
morbalint c7c6c626e1 fix nullable warnings (#49)
* fix nullable warnings

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

15 lines
369 B
C#

using System.Text.Json.Serialization;
namespace Kemkas.Web.ViewModels;
public class KarakterFelszereles1eDto
{
[JsonPropertyName("pancelID")]
public string? PancelId { get; set; }
[JsonPropertyName("pajzsID")]
public string? PajzsId { get; set; }
[JsonPropertyName("fegyverIDk")]
public IList<string> FegyverIds { get; set; } = [];
}