Files
Umbraco-CMS/src/Umbraco.Core/Notifications/PartialViewCreatedNotification.cs

16 lines
400 B
C#
Raw Normal View History

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;
namespace Umbraco.Cms.Core.Notifications
2021-03-30 10:01:42 +02:00
{
public class PartialViewCreatedNotification : CreatedNotification<IPartialView>
{
public PartialViewCreatedNotification(IPartialView target, EventMessages messages) : base(target, messages)
{
}
}
}