mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Move import logic to shared implementation
This commit is contained in:
13
osu.Game/Database/INamedFileInfo.cs
Normal file
13
osu.Game/Database/INamedFileInfo.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user