Try your search with a different keyword or use * as a wildcard.
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; }
}