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