Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
///
/// "Customer is change multi-factor authentication provider" event
///
public partial class CustomerChangeMultiFactorAuthenticationProviderEvent
{
///
/// Ctor
///
/// Customer
public CustomerChangeMultiFactorAuthenticationProviderEvent(Customer customer)
{
Customer = customer;
}
//
/// Get or set the customer
///
public Customer Customer { get; }
}