namespace api.Features.Projects.Common; public record ProjectResponse( Guid Id, Guid WorkspaceId, string Name, string? Description, int LinkCount, int QRCodeCount, DateTime CreatedAt ); public record ProjectListResponse( IEnumerable Projects );