// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Game.Beatmaps; using osu.Game.Models; namespace osu.Game.Database { /// /// A model that contains a list of files it is responsible for. /// public interface IHasRealmFiles : IHasNamedFiles { /// /// Available files in this model, with locally filenames. /// When performing lookups, consider using or to do case-insensitive lookups. /// new IList Files { get; } IEnumerable IHasNamedFiles.Files => Files; /// /// A combined hash representing the model, based on the files it contains. /// Implementation specific. /// string Hash { get; set; } } }