PlanTempusApp/PlanTempus.Application/Features/Customers/Pages/Index.cshtml.cs
Janus C. H. Knudsen 65ad9aacdf Adds customers page and related styling
Introduces new customers management interface with data table
Adds customers-specific CSS and updates layout to include new stylesheet
Configures menu service to point to new customers page route
2026-01-19 14:43:48 +01:00

10 lines
180 B
C#

using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Features.Customers.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}