project setup
This commit is contained in:
@@ -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">;
|
||||
}
|
||||
Reference in New Issue
Block a user