[MAJOR][FIRSTCOMMIT] Add board, read board, tasks

This commit is contained in:
2025-09-27 17:26:43 +05:30
parent b536a2c3d0
commit 587a71ebf1
61 changed files with 6464 additions and 11736 deletions

23
src/types/entity.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
interface Board {
id: number
userId: number
name: string
description?: string
createdAt: string
updatedAt: string
}
interface Task {
id: number
boardId: number
title: string
description?: string
status: "todo" | "in-progress" | "done"
createdAt: string
updatedAt: string
}
interface TaskGroup {
groupId: string
tasks: Task[]
}