2021-09-30 17:21:16 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
2021-10-04 15:35:55 +08:00
|
|
|
public interface IPostImports<out TModel>
|
2021-09-30 17:21:16 +08:00
|
|
|
where TModel : class
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Fired when the user requests to view the resulting import.
|
|
|
|
/// </summary>
|
2021-10-04 15:35:55 +08:00
|
|
|
public Action<IEnumerable<ILive<TModel>>> PostImport { set; }
|
2021-09-30 17:21:16 +08:00
|
|
|
}
|
|
|
|
}
|