13 lines
369 B
C#
13 lines
369 B
C#
using AuthorBuddy.Web.Models;
|
|
|
|
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 int UserId { get; set; }
|
|
public DateTime? LastOpened { get; set; }
|
|
public ProjectTemplate Template { get; set; }
|
|
}
|