using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; namespace PlanTempus.Application.Features.Customers.Pages; public class DetailModel : PageModel { [BindProperty(SupportsGet = true)] public string Id { get; set; } = string.Empty; public void OnGet() { } }