Add required properties to make realm models backwards compatible

This commit is contained in:
Dean Herbert
2021-11-19 19:24:07 +09:00
parent 618903c217
commit c3df58e01c
5 changed files with 103 additions and 11 deletions

View File

@ -31,5 +31,15 @@ namespace osu.Game.Models
}
IFileInfo INamedFileUsage.File => File;
#region Compatibility properties
public RealmFile FileInfo
{
get => File;
set => File = value;
}
#endregion
}
}