Files
Umbraco-CMS/src/Umbraco.Core/Services/Notifications/UserGroupWithUsersSavingNotification.cs

20 lines
604 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System.Collections.Generic;
using Umbraco.Cms.Core.Events;
namespace Umbraco.Cms.Core.Services.Notifications
{
public sealed class UserGroupWithUsersSavingNotification : SavingNotification<UserGroupWithUsers>
{
public UserGroupWithUsersSavingNotification(UserGroupWithUsers target, EventMessages messages) : base(target, messages)
{
}
public UserGroupWithUsersSavingNotification(IEnumerable<UserGroupWithUsers> target, EventMessages messages) : base(target, messages)
{
}
}
}