using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; namespace DXApp.TemplateKitProject.Pages.Invoices; public class DocumentViewerDevExpressModel : PageModel { [BindProperty(SupportsGet = true)] public int Id { get; set; } public string ReportKey => $"invoice-{Id}"; public void OnGet() { } }