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