// Copyright (c) Umbraco. // See LICENSE for more details. 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) { } }