namespace Nexus.Application.DTOs.Projects; public class ProjectDto { public Guid Id { get; set; } public string Name { get; set; } = null!; public DateTime CreatedAt { get; set; } }