10 lines
252 B
C#
10 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; }
|
||
|
|
}
|