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