using Nop.Web.Framework.Models; using Nop.Web.Framework.Mvc.ModelBinding; namespace Nop.Web.Areas.Admin.Models.Settings; /// /// Represents an external authentication settings model /// public partial record ExternalAuthenticationSettingsModel : BaseNopModel, ISettingsModel { #region Properties public int ActiveStoreScopeConfiguration { get; set; } [NopResourceDisplayName("Admin.Configuration.Settings.CustomerUser.AllowCustomersToRemoveAssociations")] public bool AllowCustomersToRemoveAssociations { get; set; } #endregion }