tududi/app/frontend/entities/Note.ts
2024-10-27 11:14:20 +02:00

12 lines
218 B
TypeScript

export interface Note {
id?: number;
title: string;
content: string;
created_at?: string;
updated_at?: string;
tags?: { id: number; name: string }[];
project?: {
id: number;
name: string;
};
}