mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
fix nullable warnings (#49)
* fix nullable warnings * use collection initalizers
This commit is contained in:
@@ -5,11 +5,11 @@ namespace Kemkas.Web.ViewModels;
|
||||
public class KarakterVarazslat2eDto
|
||||
{
|
||||
[JsonPropertyName("id")]
|
||||
public string VarazslatId { get; set; }
|
||||
public required string VarazslatId { get; set; }
|
||||
|
||||
[JsonPropertyName("bekeszitve")]
|
||||
public bool Bekeszitve { get; set; }
|
||||
|
||||
[JsonPropertyName("osztaly")]
|
||||
public string Osztaly { get; set; }
|
||||
public required string Osztaly { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user