1
0
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:
smoogipoo 2018-11-28 13:42:36 +09:00
parent 14ff4bc26a
commit dc31736db7

View File

@ -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; }
}
}