mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 16:12:54 +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>
|
/// </summary>
|
||||||
public interface INamedFileInfo
|
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; }
|
FileInfo FileInfo { get; set; }
|
||||||
|
|
||||||
string Filename { get; set; }
|
string Filename { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user