2020-02-18 14:48:36 +01:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Umbraco.Core.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Services
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IInstallationService
|
|
|
|
|
|
{
|
2020-02-19 08:32:47 +01:00
|
|
|
|
Task LogInstall(InstallLog installLog);
|
2020-02-18 14:48:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|