Try your search with a different keyword or use * as a wildcard.
@model MediaSettingsModel
@{
    //page title
    ViewBag.PageTitle = T("Admin.Configuration.Settings.Media").Text;
    //active menu item (system name)
    NopHtml.SetActiveMenuItemSystemName("Media settings");
}
@{
    const string hideCommonBlockAttributeName = "MediaSettingsPage.HideCommonBlock";
    var customer = await workContext.GetCurrentCustomerAsync();
    var hideCommonBlock = await genericAttributeService.GetAttributeAsync(customer, hideCommonBlockAttributeName);
    const string hideProductBlockAttributeName = "MediaSettingsPage.HideProductBlock";
    var hideProductBlock = await genericAttributeService.GetAttributeAsync(customer, hideProductBlockAttributeName);
    const string hideOtherPagesBlockAttributeName = "MediaSettingsPage.HideOtherPagesBlock";
    var hideOtherPagesBlock = await genericAttributeService.GetAttributeAsync(customer, hideOtherPagesBlockAttributeName);
}