feat(workspace): adds workspace and projects

This commit is contained in:
2026-01-28 12:58:28 -05:00
parent 11d6390884
commit c23156c6b4
15 changed files with 928 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace api.Features.Projects.Common;
public record ProjectResponse(
Guid Id,
Guid WorkspaceId,
string Name,
DateTime CreatedAt
);
public record ProjectListResponse(
IEnumerable<ProjectResponse> Projects
);