// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE 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; set; } } }