1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 23:12:55 +08:00
osu-lazer/osu.Game/Database/INamedFileInfo.cs

14 lines
324 B
C#
Raw Normal View History

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