// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.Notifications;
///
/// A notification that is used to trigger the IMemberService when the Saving method is called in the API.
///
public sealed class MemberSavingNotification : SavingNotification
{
public MemberSavingNotification(IMember target, EventMessages messages)
: base(target, messages)
{
}
///
/// Initializes a new instance of the .
///
///
/// Gets the collection of objects being saved.
///
///
/// Initializes a new instance of the .
///
public MemberSavingNotification(IEnumerable target, EventMessages messages)
: base(target, messages)
{
}
}