Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Models.Customer;
namespace Nop.Web.Factories;
/// <summary>
/// Represents the interface of the external authentication model factory
/// </summary>
public partial interface IExternalAuthenticationModelFactory
{
/// <summary>
/// Prepare the external authentication method model
/// </summary>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the list of the external authentication method model
/// </returns>
Task<List<ExternalAuthenticationMethodModel>> PrepareExternalMethodsModelAsync();
}