// 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; namespace osu.Game.Database { /// /// A model that contains a list of files it is responsible for. /// /// The model representing a file. public interface IHasFiles where TFile : INamedFileInfo { List Files { get; } string Hash { get; set; } } }