© 2026 Hedgehog Software, LLC
export type ProjectData = Prisma.ProjectGetPayload<{ include: { tasks: true; attachments: { include: { user: true } }; members: { include: { user: true } }; _count: { select: { comments: true; attachments: true } }; }; }>;
type ProjectWithTasksAndAttachments = ProjectWithTasks & ProjectWithAttachments