15 lines
429 B
C#
15 lines
429 B
C#
using Nop.Services.Plugins;
|
|
|
|
namespace Nop.Services.Authentication.External;
|
|
|
|
/// <summary>
|
|
/// Represents method for the external authentication
|
|
/// </summary>
|
|
public partial interface IExternalAuthenticationMethod : IPlugin
|
|
{
|
|
/// <summary>
|
|
/// Gets a type of a view component for displaying plugin in public store
|
|
/// </summary>
|
|
/// <returns>View component type</returns>
|
|
Type GetPublicViewComponent();
|
|
} |