mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
make properties that cant be nullable not nullable
This commit is contained in:
parent
8f4117cf37
commit
0c24753a1c
@ -12,10 +12,10 @@
|
|||||||
public string JoinDate { get; set; } = null!;
|
public string JoinDate { get; set; } = null!;
|
||||||
|
|
||||||
[JsonPropertyName("isBanned")]
|
[JsonPropertyName("isBanned")]
|
||||||
public bool IsBanned { get; set; } = null!;
|
public bool IsBanned { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("hasVerifiedBadge")]
|
[JsonPropertyName("hasVerifiedBadge")]
|
||||||
public bool HasVerifiedBadge { get; set; } = null!;
|
public bool HasVerifiedBadge { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string Username { get; set; } = null!;
|
public string Username { get; set; } = null!;
|
||||||
|
Loading…
Reference in New Issue
Block a user