Move notifications to core instead of infrastructure

This commit is contained in:
Bjarke Berg
2021-04-09 13:43:39 +02:00
parent 578c1d1c0f
commit ba6eea4f6f
152 changed files with 160 additions and 160 deletions

View File

@@ -0,0 +1,15 @@
// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.Services.Notifications
{
public class PartialViewCreatingNotification : CreatingNotification<IPartialView>
{
public PartialViewCreatingNotification(IPartialView target, EventMessages messages) : base(target, messages)
{
}
}
}