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

@ -11,5 +11,7 @@ namespace osu.Game.Database
[JsonIgnore]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
int ID { get; set; }
bool IsManaged { get; }
}
}