Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/MemberGroupDeletedNotification.cs
2021-03-26 18:47:06 +01:00

13 lines
359 B
C#

using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Infrastructure.Services.Notifications
{
public class MemberGroupDeletedNotification : DeletedNotification<IMemberGroup>
{
public MemberGroupDeletedNotification(IMemberGroup target, EventMessages messages) : base(target, messages)
{
}
}
}