16 lines
422 B
C#
16 lines
422 B
C#
|
|
// Copyright (c) Umbraco.
|
||
|
|
// See LICENSE for more details.
|
||
|
|
|
||
|
|
using Umbraco.Cms.Core.Events;
|
||
|
|
using Umbraco.Cms.Core.Models;
|
||
|
|
|
||
|
|
namespace Umbraco.Cms.Infrastructure.Services.Notifications
|
||
|
|
{
|
||
|
|
public class PartialViewCreatingNotification : CreatingNotification<IPartialView>
|
||
|
|
{
|
||
|
|
public PartialViewCreatingNotification(IPartialView target, EventMessages messages) : base(target, messages)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|