project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { User } from "@/store/models/User.model";
export interface Comment {
id: string;
content: string;
createdAt: string | Date;
todoId: string;
userId: string;
user: Pick<User, "id" | "firstName" | "lastName" | "imageUrl" | "role">;
}