// 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.Models; namespace osu.Game.Database { /// /// A model that contains a list of files it is responsible for. /// public interface IHasRealmFiles { IList Files { get; } string Hash { get; set; } } }