tududi/app/frontend/entities/Note.ts
2024-11-08 14:55:46 +02:00

14 lines
223 B
TypeScript

import { Tag } from "./Tag";
export interface Note {
id?: number;
title: string;
content: string;
created_at?: string;
updated_at?: string;
tags?: Tag[];
project?: {
id: number;
name: string;
};
}