1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 11:20:17 +08:00
Files
osu-lazer/osu.Game/Database/INamedFileInfo.cs
T
2018-02-15 13:49:17 +09:00

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