namespace Nop.Core.Domain.Gdpr; /// /// Customer permanently deleted (GDPR) /// public partial class CustomerPermanentlyDeleted { /// /// Ctor /// /// Customer identifier /// Email public CustomerPermanentlyDeleted(int customerId, string email) { CustomerId = customerId; Email = email; } /// /// Customer identifier /// public int CustomerId { get; } /// /// Email /// public string Email { get; } }