AuthorBuddy/Data/ProjectEntity.cs

14 lines
369 B
C#
Raw Normal View History

2026-05-31 19:31:27 +02:00
using AuthorBuddy.Web.Models;
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;
2026-05-31 19:31:27 +02:00
public int UserId { get; set; }
2026-05-14 12:31:35 +02:00
public DateTime? LastOpened { get; set; }
2026-05-31 19:31:27 +02:00
public ProjectTemplate Template { get; set; }
2026-05-14 12:31:35 +02:00
}