Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/ExportedMemberNotification.cs

20 lines
501 B
C#

using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Models.Membership;
namespace Umbraco.Cms.Infrastructure.Services.Notifications
{
public class ExportedMemberNotification : INotification
{
public ExportedMemberNotification(IMember member, MemberExportModel exported)
{
Member = member;
Exported = exported;
}
public IMember Member { get; }
public MemberExportModel Exported { get; }
}
}