2021-03-30 10:01:42 +02:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
using Umbraco.Cms.Core.Events;
|
|
|
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
|
|
2021-05-11 14:33:49 +02:00
|
|
|
namespace Umbraco.Cms.Core.Notifications
|
2021-03-30 10:01:42 +02:00
|
|
|
{
|
|
|
|
|
public class PartialViewCreatingNotification : CreatingNotification<IPartialView>
|
|
|
|
|
{
|
|
|
|
|
public PartialViewCreatingNotification(IPartialView target, EventMessages messages) : base(target, messages)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|