2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-02-15 07:33:33 +00:00
|
|
|
|
using osu.Game.IO;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-02-14 11:26:49 +00:00
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represent a join model which gives a filename and scope to a <see cref="FileInfo"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface INamedFileInfo
|
|
|
|
|
{
|
2018-11-28 04:42:36 +00:00
|
|
|
|
// An explicit foreign key property isn't required but is recommended and may be helpful to have
|
|
|
|
|
int FileInfoID { get; set; }
|
|
|
|
|
|
2018-02-14 11:26:49 +00:00
|
|
|
|
FileInfo FileInfo { get; set; }
|
2018-11-28 04:42:36 +00:00
|
|
|
|
|
2018-02-14 11:26:49 +00:00
|
|
|
|
string Filename { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|