This commit is contained in:
younes elhaddoury
2025-09-17 10:28:02 +02:00
parent 9c8fb9b205
commit bb13759af4
288 changed files with 102393 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System.Collections.Generic;
using LEA.Models;
namespace LEA.ViewModels;
public class DashboardViewModel
{
public bool IsAuthenticated { get; set; }
public string? FullName { get; set; }
public int TotalApplications { get; set; }
public int AppliedCount { get; set; }
public int InterviewCount { get; set; }
public int OfferCount { get; set; }
public int RejectedCount { get; set; }
public IEnumerable<Application> RecentApplications { get; set; } = new List<Application>();
public IList<MonthlyApplicationStat> MonthlyApplications { get; set; } = new List<MonthlyApplicationStat>();
}
public record MonthlyApplicationStat(string Label, int Count);