mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Add required properties to make realm models backwards compatible
This commit is contained in:
@ -44,5 +44,15 @@ namespace osu.Game.Beatmaps
|
||||
public string BackgroundFile { get; set; } = string.Empty;
|
||||
|
||||
IUser IBeatmapMetadataInfo.Author => Author;
|
||||
|
||||
#region Compatibility properties
|
||||
|
||||
public string AuthorString
|
||||
{
|
||||
get => Author.Username;
|
||||
set => Author.Username = value;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user