mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 16:02:55 +08:00
Add explicit foreign key property to INamedFileInfo
This commit is contained in:
parent
14ff4bc26a
commit
dc31736db7
@ -10,7 +10,11 @@ namespace osu.Game.Database
|
||||
/// </summary>
|
||||
public interface INamedFileInfo
|
||||
{
|
||||
// An explicit foreign key property isn't required but is recommended and may be helpful to have
|
||||
int FileInfoID { get; set; }
|
||||
|
||||
FileInfo FileInfo { get; set; }
|
||||
|
||||
string Filename { get; set; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user