Webiant Logo Webiant Logo
  1. No results found.

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

CustomerChangeMultiFactorAuthenticationProviderEvent.cs

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