Webiant Logo Webiant Logo
  1. No results found.

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

IExternalAuthenticationModelFactory.cs

using Nop.Web.Models.Customer;

namespace Nop.Web.Factories;

/// 
/// Represents the interface of the external authentication model factory
/// 
public partial interface IExternalAuthenticationModelFactory
{
    /// 
    /// Prepare the external authentication method model
    /// 
    /// 
    /// A task that represents the asynchronous operation
    /// The task result contains the list of the external authentication method model
    /// 
    Task> PrepareExternalMethodsModelAsync();
}