Try your search with a different keyword or use * as a wildcard.
using Nop.Services.Plugins;
namespace Nop.Services.Authentication.External;
///
/// Represents method for the external authentication
///
public partial interface IExternalAuthenticationMethod : IPlugin
{
///
/// Gets a type of a view component for displaying plugin in public store
///
/// View component type
Type GetPublicViewComponent();
}