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 { List Files { get; set; } } }