PlanTempusApp/PlanTempus.Application/Features/Reports/Pages/Index.cshtml.cs
Janus C. H. Knudsen 405dabeb34 Add reports page with sales analytics and UI components
Introduces comprehensive reports feature with interactive sales dashboard
Includes dynamic data tables, charts, and filtering capabilities
Enhances application with new statistics and reporting functionality
2026-01-21 21:37:09 +01:00

10 lines
178 B
C#

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