19 lines
487 B
C#
19 lines
487 B
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Plugin.ExternalAuth.Facebook;
|
|
|
|
/// <summary>
|
|
/// Represents settings of the Facebook authentication method
|
|
/// </summary>
|
|
public class FacebookExternalAuthSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets OAuth2 client identifier
|
|
/// </summary>
|
|
public string ClientKeyIdentifier { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets OAuth2 client secret
|
|
/// </summary>
|
|
public string ClientSecret { get; set; }
|
|
} |