add finish todos list

This commit is contained in:
Romulus21
2024-02-15 21:38:05 +01:00
parent 04b8f7566c
commit 583d128bf8
9 changed files with 90 additions and 10 deletions

View File

@@ -2,7 +2,7 @@ export interface toDo {
id: number,
user_id: number,
name: string,
checked: boolean,
checked: string|null,
description?: string,
}