mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 23:12:55 +08:00
14 lines
324 B
C#
14 lines
324 B
C#
|
using osu.Game.IO;
|
|||
|
|
|||
|
namespace osu.Game.Database
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represent a join model which gives a filename and scope to a <see cref="FileInfo"/>.
|
|||
|
/// </summary>
|
|||
|
public interface INamedFileInfo
|
|||
|
{
|
|||
|
FileInfo FileInfo { get; set; }
|
|||
|
string Filename { get; set; }
|
|||
|
}
|
|||
|
}
|