2026-05-14 12:31:35 +02:00
|
|
|
namespace AuthorBuddy.Web.Models;
|
|
|
|
|
|
|
|
|
|
public class Project
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; internal set; }
|
|
|
|
|
public string Name { get; internal set; } = string.Empty;
|
|
|
|
|
public string RootPath { get; internal set; } = string.Empty;
|
2026-05-31 19:31:27 +02:00
|
|
|
public ProjectTemplate Template { get; internal set; }
|
2026-05-14 12:31:35 +02:00
|
|
|
}
|