mirror of
https://github.com/osukey/osukey.git
synced 2025-05-01 11:47:18 +09: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; }
|
|
}
|
|
}
|