Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ConfigurationModel.cs

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Plugin.ExternalAuth.Facebook.Models;

/// 
/// Represents plugin configuration model
/// 
public record ConfigurationModel : BaseNopModel
{
    [NopResourceDisplayName("Plugins.ExternalAuth.Facebook.ClientKeyIdentifier")]
    public string ClientId { get; set; }

    [NopResourceDisplayName("Plugins.ExternalAuth.Facebook.ClientSecret")]
    public string ClientSecret { get; set; }
}