using Nop.Core.Configuration; namespace Nop.Plugin.ExternalAuth.Facebook; /// /// Represents settings of the Facebook authentication method /// public class FacebookExternalAuthSettings : ISettings { /// /// Gets or sets OAuth2 client identifier /// public string ClientKeyIdentifier { get; set; } /// /// Gets or sets OAuth2 client secret /// public string ClientSecret { get; set; } }