AuthorBuddy/Data/ProjectEntity.cs
2026-05-20 06:12:54 +02:00

9 lines
252 B
C#

namespace AuthorBuddy.Web.Data;
public class ProjectEntity
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string RootPath { get; set; } = string.Empty;
public DateTime? LastOpened { get; set; }
}