mirror of
https://github.com/ppy/osu
synced 2024-12-12 18:07:52 +00:00
14 lines
354 B
C#
14 lines
354 B
C#
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
/// <summary>
|
|
/// A model that contains a list of files it is responsible for.
|
|
/// </summary>
|
|
/// <typeparam name="TFile">The model representing a file.</typeparam>
|
|
public interface IHasFiles<TFile>
|
|
{
|
|
List<TFile> Files { get; set; }
|
|
}
|
|
}
|