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;

/// <summary>
/// "Customer is change multi-factor authentication provider" event
/// </summary>
public partial class CustomerChangeMultiFactorAuthenticationProviderEvent
{
    /// <summary>
    /// Ctor
    /// </summary>
    /// <param name="customer">Customer</param>
    public CustomerChangeMultiFactorAuthenticationProviderEvent(Customer customer)
    {
        Customer = customer;
    }

    // <summary>
    /// Get or set the customer
    /// </summary>
    public Customer Customer { get; }
}