AuthorBuddy/Data/ProjectEntity.cs

10 lines
252 B
C#
Raw Normal View History

2026-05-14 12:31:35 +02:00
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; }
}