remove nullability

This commit is contained in:
azyges
2025-09-26 20:25:08 +09:00
parent 2b05223a4b
commit 48cf492fa1
7 changed files with 13 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ public class User
public bool IsAdmin { get; set; } = false;
public bool? HasVanity { get; set; } = false;
public bool HasVanity { get; set; } = false;
[MaxLength(9)]
public string? TextColorHex { get; set; } = string.Empty;