Enhance the landing page and include the recent projects for faster opening
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-22 14:21:30 +05:30
parent f70e21c40e
commit f9118a563c
4 changed files with 325 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Nodify.Calculator.Models
{
public class RecentProjectEntry
{
public int Id { get; set; }
public string ProjectName { get; set; } = string.Empty;
public string ProjectPath { get; set; } = string.Empty;
public DateTime LastOpened { get; set; } = DateTime.Now;
}
}