mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
36 lines
993 B
C#
36 lines
993 B
C#
// 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 JetBrains.Annotations;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Database;
|
|
using osu.Game.IO;
|
|
using Realms;
|
|
|
|
#nullable enable
|
|
|
|
namespace osu.Game.Models
|
|
{
|
|
[ExcludeFromDynamicCompile]
|
|
public class RealmNamedFileUsage : EmbeddedObject, INamedFile, INamedFileUsage
|
|
{
|
|
public RealmFile File { get; set; } = null!;
|
|
|
|
// [Indexed] cannot be used on `EmbeddedObject`s as it only applies to top-level queries. May need to reconsider this if performance becomes a concern.
|
|
public string Filename { get; set; } = null!;
|
|
|
|
public RealmNamedFileUsage(RealmFile file, string filename)
|
|
{
|
|
File = file;
|
|
Filename = filename;
|
|
}
|
|
|
|
[UsedImplicitly]
|
|
private RealmNamedFileUsage()
|
|
{
|
|
}
|
|
|
|
IFileInfo INamedFileUsage.File => File;
|
|
}
|
|
}
|