Try your search with a different keyword or use * as a wildcard.
@model GdprSettingsModel
@{
//page title
ViewBag.PageTitle = T("Admin.Configuration.Settings.Gdpr").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("GDPR settings");
}
@{
const string hideCommonBlockAttributeName = "GdprSettingsPage.HideCommonBlock";
var customer = await workContext.GetCurrentCustomerAsync();
var hideCommonBlock = await genericAttributeService.GetAttributeAsync(customer, hideCommonBlockAttributeName);
const string hideConsentsBlockAttributeName = "GdprSettingsPage.HideConsentsBlock";
var hideConsentsBlock = await genericAttributeService.GetAttributeAsync(customer, hideConsentsBlockAttributeName);
}