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 @@
using Nexus.Application.DTOs.Projects;
namespace Nexus.Application.Interfaces;
public interface IProjectService
{
Task<List<ProjectDto>> GetAllAsync();
}