2021-10-11 14:25:00 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using osu.Game.Models;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-10-13 11:51:41 +08:00
|
|
|
|
/// Represents a join model which gives a filename and scope to a <see cref="File"/>.
|
2021-10-11 14:25:00 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public interface INamedFile
|
|
|
|
|
{
|
2021-10-13 11:51:41 +08:00
|
|
|
|
string Filename { get; set; }
|
2021-10-11 14:25:00 +08:00
|
|
|
|
|
2021-10-13 11:51:41 +08:00
|
|
|
|
RealmFile File { get; set; }
|
2021-10-11 14:25:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|