@using BTCPayServer.Client @using Microsoft.AspNetCore.Mvc.TagHelpers @using BTCPayServer.Views.Apps @using BTCPayServer.Abstractions.Extensions @using BTCPayServer.Abstractions.TagHelpers @using BTCPayServer.Plugins.PointOfSale @using BTCPayServer.Services.Apps @inject AppService AppService; @model BTCPayServer.Components.MainNav.MainNavViewModel @{ var store = Context.GetStoreData(); } @if (store != null) { var appType = AppService.GetAppType(PointOfSaleAppType.AppType)!; @foreach (var app in Model.Apps.Where(app => app.AppType == appType.Type)) { } }