// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.IO; namespace osu.Game.Database { /// /// A usage of a file, with a local filename attached. /// public interface INamedFileUsage { /// /// The underlying file on disk. /// IFileInfo File { get; } /// /// The filename for this usage. /// string Filename { get; } } }