Give RealmUser.Username a better default value

This commit is contained in:
Dean Herbert 2022-01-26 15:14:49 +09:00
parent d0a2818847
commit 267a7bd21f

View File

@ -11,7 +11,7 @@ namespace osu.Game.Models
{
public int OnlineID { get; set; } = 1;
public string Username { get; set; }
public string Username { get; set; } = string.Empty;
public bool IsBot => false;