Add IsManaged helper method to EF classes to match realm implementation

This commit is contained in:
Dean Herbert
2021-11-19 21:53:40 +09:00
parent d397524878
commit eecf6ad558
12 changed files with 24 additions and 0 deletions

View File

@ -20,6 +20,8 @@ namespace osu.Game.Beatmaps
{
public int ID { get; set; }
public bool IsManaged => ID > 0;
public string Title { get; set; } = string.Empty;
[JsonProperty("title_unicode")]