@inject IFileService FileService @using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Abstractions.Extensions @model (string Title, string LogoFileId) @{ var logoUrl = !string.IsNullOrEmpty(Model.LogoFileId) ? await FileService.GetFileUrl(Context.Request.GetAbsoluteRootUri(), Model.LogoFileId) : null; }
@if (!string.IsNullOrEmpty(logoUrl)) { }

@Model.Title