fix: slot name can be empty

This commit is contained in:
CyberL1 2024-05-21 10:35:32 +02:00
parent ffed3a8b4a
commit 7b88bdb80e

View File

@ -2,7 +2,7 @@
{ {
public class SlotOptionsRequest public class SlotOptionsRequest
{ {
public string SlotName { get; set; } = null!; public string SlotName { get; set; } = string.Empty;
public string Version { get; set; } = null!; public string Version { get; set; } = null!;
public int GameMode { get; set; } public int GameMode { get; set; }
public int Difficulty { get; set; } public int Difficulty { get; set; }