import { User } from "@/store/models/User.model"; export interface Comment { id: string; content: string; createdAt: string | Date; todoId: string; userId: string; user: Pick; }