import type { WorkspaceMemberRole } from "@prisma/client"; /** * Response DTO for a workspace the authenticated user belongs to. */ export class WorkspaceResponseDto { id!: string; name!: string; ownerId!: string; role!: WorkspaceMemberRole; createdAt!: Date; }