commited scoobydoo

This commit is contained in:
2026-07-04 23:36:31 +02:00
parent 077ee48927
commit 6a061c6835
190 changed files with 1624 additions and 237 deletions
@@ -0,0 +1,8 @@
namespace Nexus.Application.DTOs.Projects;
public class ProjectDto
{
public Guid Id { get; set; }
public string Name { get; set; } = null!;
public DateTime CreatedAt { get; set; }
}