11 lines
284 B
C#
11 lines
284 B
C#
namespace WorkManagementTool.Data.Entities
|
|
{
|
|
public class Project
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public string? Description { get; set; }
|
|
public List<ProjectTask> Tasks { get; set; } = new();
|
|
}
|
|
}
|