Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Customers;
namespace Nop.Services.Authentication.External;
/// <summary>
/// Customer auto registered by external authentication method event
/// </summary>
public partial class CustomerAutoRegisteredByExternalMethodEvent
{
/// <summary>
/// Ctor
/// </summary>
/// <param name="customer">Customer</param>
/// <param name="parameters">Parameters</param>
public CustomerAutoRegisteredByExternalMethodEvent(Customer customer, ExternalAuthenticationParameters parameters)
{
Customer = customer;
AuthenticationParameters = parameters;
}
/// <summary>
/// Gets or sets customer
/// </summary>
public Customer Customer { get; }
/// <summary>
/// Gets or sets external authentication parameters
/// </summary>
public ExternalAuthenticationParameters AuthenticationParameters { get; }
}