mirror of
https://github.com/osukey/osukey.git
synced 2025-05-01 03:37:17 +09: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; }
|
|
}
|
|
}
|