Add note about `BeatmapMetadata.Author` being weird

This commit is contained in:
Dean Herbert 2022-01-10 14:40:41 +09:00
parent 8ecfb9172e
commit a0f8debafe
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public class BeatmapMetadata : RealmObject, IBeatmapMetadataInfo
[JsonProperty("artist_unicode")]
public string ArtistUnicode { get; set; } = string.Empty;
public RealmUser Author { get; set; } = new RealmUser();
public RealmUser Author { get; set; } = new RealmUser(); // TODO: not sure we want to initialise this only to have it overwritten by retrieval.
public string Source { get; set; } = string.Empty;