using Microsoft.AspNetCore.Mvc.RazorPages; using PlanTempus.Application.Features.Accounts.Models; namespace PlanTempus.Application.Features.Accounts.Pages; public class PricingModel : PageModel { public IEnumerable Plans { get; private set; } = Enumerable.Empty(); public void OnGet() { Plans = PlanCatalog.GetAllPlans(); } }