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
15 lines
369 B
C#
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; } = [];
|
|
} |