Enhance the landing page and include the recent projects for faster opening
Some checks failed
Build / build (push) Has been cancelled
Some checks failed
Build / build (push) Has been cancelled
This commit is contained in:
12
Examples/Nodify.Calculator/Models/RecentProjectEntry.cs
Normal file
12
Examples/Nodify.Calculator/Models/RecentProjectEntry.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user