Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Events.cs

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; }
}